2014-06-26 15:39:52 +00:00
|
|
|
.toolbar {
|
2017-11-23 16:42:38 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2014-06-26 15:39:52 +00:00
|
|
|
height: 40px;
|
2017-11-23 16:42:38 +00:00
|
|
|
border-bottom: @toolbar-border-bottom;
|
2014-06-26 15:39:52 +00:00
|
|
|
|
2016-02-02 14:48:22 +00:00
|
|
|
> a, .toolbar-right > a {
|
2014-07-17 10:05:08 +00:00
|
|
|
position: relative;
|
|
|
|
.label {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: .15em .6em .2em;
|
|
|
|
font-size: 60%;
|
2017-06-15 15:14:06 +00:00
|
|
|
pointer-events: none; // Labels were capturing button/anchor clicks.
|
2014-07-17 10:05:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-16 12:17:26 +00:00
|
|
|
> a:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2016-09-26 15:09:27 +00:00
|
|
|
> a:not(.btn),
|
|
|
|
.toolbar-left > a:not(.btn),
|
|
|
|
.toolbar-right > a:not(.btn) {
|
2014-06-26 15:39:52 +00:00
|
|
|
display: inline-block;
|
2017-11-21 11:20:39 +00:00
|
|
|
color: @toolbar-icon-btn-color;
|
2017-11-23 16:42:38 +00:00
|
|
|
padding: 0 5px;
|
2014-06-29 13:22:08 +00:00
|
|
|
border-radius: @border-radius-small;
|
2017-12-05 10:20:25 +00:00
|
|
|
&.toolbar-header-back-projects {
|
|
|
|
padding: 5px 10px 4px;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
}
|
2014-06-26 15:39:52 +00:00
|
|
|
&:hover {
|
2017-11-21 11:20:39 +00:00
|
|
|
text-shadow: @toolbar-icon-btn-hover-shadow;
|
|
|
|
color: @toolbar-icon-btn-hover-color;
|
2014-06-29 13:22:08 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2014-08-12 12:18:22 +00:00
|
|
|
&.active, &:active {
|
|
|
|
.label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
color: white;
|
|
|
|
background-color: @link-color;
|
2017-12-05 10:20:25 +00:00
|
|
|
box-shadow: @toolbar-icon-btn-hover-boxshadow;
|
2014-08-12 12:18:22 +00:00
|
|
|
&:hover {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
2014-06-26 15:39:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-full-height {
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
border-right: 1px solid @toolbar-border-color;
|
2017-11-13 12:03:28 +00:00
|
|
|
color: @toolbar-btn-color;
|
2014-07-02 09:59:18 +00:00
|
|
|
padding: 3px 10px 5px;
|
|
|
|
font-size: 20px;
|
2014-06-26 15:39:52 +00:00
|
|
|
&:hover {
|
2017-11-13 12:03:28 +00:00
|
|
|
text-shadow: @toolbar-btn-hover-text-shadow;
|
|
|
|
background-color: @toolbar-btn-hover-bg-color;
|
|
|
|
color: @toolbar-btn-hover-color;
|
2014-06-26 15:39:52 +00:00
|
|
|
}
|
|
|
|
&.active, &:active {
|
2017-11-13 12:03:28 +00:00
|
|
|
color: @toolbar-btn-active-color;
|
|
|
|
background-color: @toolbar-btn-active-bg-color;
|
|
|
|
box-shadow: @toolbar-btn-active-shadow;
|
2014-06-26 15:39:52 +00:00
|
|
|
}
|
2014-07-17 10:05:08 +00:00
|
|
|
.label {
|
|
|
|
top: 4px;
|
|
|
|
right: 4px;
|
|
|
|
}
|
2014-06-26 15:39:52 +00:00
|
|
|
}
|
2017-05-01 14:04:08 +00:00
|
|
|
.btn-full-height-no-border {
|
|
|
|
border-right: 0;
|
|
|
|
border-left: 0;
|
|
|
|
}
|
2014-06-26 15:39:52 +00:00
|
|
|
|
2016-09-26 15:09:27 +00:00
|
|
|
.toolbar-left {
|
2017-11-23 16:42:38 +00:00
|
|
|
display: flex;
|
2016-09-26 15:09:27 +00:00
|
|
|
float: left;
|
|
|
|
text-align: center;
|
2017-11-24 15:36:23 +00:00
|
|
|
align-items: center;
|
2016-09-26 15:09:27 +00:00
|
|
|
}
|
|
|
|
|
2014-06-26 15:39:52 +00:00
|
|
|
.toolbar-right {
|
2017-11-23 16:42:38 +00:00
|
|
|
display: flex;
|
2017-11-24 15:36:23 +00:00
|
|
|
align-items: center;
|
2017-11-23 16:42:38 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: flex-end;
|
2014-06-26 15:39:52 +00:00
|
|
|
.btn-full-height {
|
|
|
|
border-right: 0;
|
|
|
|
border-left: 1px solid @toolbar-border-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 15:18:49 +00:00
|
|
|
.toolbar-center {
|
|
|
|
width: 300px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -150px;
|
|
|
|
text-align: center;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2014-06-26 15:39:52 +00:00
|
|
|
&.toolbar-header {
|
2017-11-13 12:03:28 +00:00
|
|
|
background-color: @toolbar-header-bg-color;
|
|
|
|
box-shadow: @toolbar-header-shadow;
|
2014-06-26 15:39:52 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.toolbar-small {
|
2017-11-23 15:21:06 +00:00
|
|
|
.toolbar-small-mixin;
|
2014-06-26 15:39:52 +00:00
|
|
|
}
|
2014-06-28 11:07:18 +00:00
|
|
|
|
|
|
|
&.toolbar-tall {
|
2017-11-23 15:21:06 +00:00
|
|
|
.toolbar-small-mixin;
|
2014-06-28 11:07:18 +00:00
|
|
|
}
|
2014-07-11 12:55:14 +00:00
|
|
|
|
|
|
|
&.toolbar-alt {
|
2017-11-23 15:21:06 +00:00
|
|
|
.toolbar-alt-mixin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-small-mixin() {
|
2017-12-07 14:14:42 +00:00
|
|
|
height: @toolbar-small-height;
|
2017-11-23 15:21:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-tall-mixin() {
|
2017-12-07 14:14:42 +00:00
|
|
|
height: @toolbar-tall-height;
|
2017-11-23 15:21:06 +00:00
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
.toolbar-alt-mixin() {
|
|
|
|
background-color: @toolbar-alt-bg-color;
|
2014-06-26 15:39:52 +00:00
|
|
|
}
|
2014-07-28 14:06:26 +00:00
|
|
|
|
2016-09-26 14:03:04 +00:00
|
|
|
.toolbar-label {
|
2016-11-22 10:59:20 +00:00
|
|
|
display: none;
|
2016-09-26 15:09:27 +00:00
|
|
|
margin: 0 4px;
|
2017-12-13 16:23:50 +00:00
|
|
|
font-size: @toolbar-font-size;
|
2016-09-28 08:31:59 +00:00
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 2px;
|
2016-09-26 15:09:27 +00:00
|
|
|
vertical-align: middle;
|
2016-11-22 10:59:20 +00:00
|
|
|
|
|
|
|
@media (min-width: @screen-sm-min) {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2016-09-26 14:03:04 +00:00
|
|
|
}
|
|
|
|
|
2014-07-28 14:06:26 +00:00
|
|
|
.editor-dark {
|
|
|
|
.toolbar-alt {
|
|
|
|
background-color: darken(@editor-dark-background-color, 0%);
|
|
|
|
}
|
|
|
|
.toolbar {
|
|
|
|
border-color: @editor-dark-toolbar-border-color;
|
|
|
|
.btn-full-height {
|
|
|
|
border-color: @editor-dark-toolbar-border-color;
|
|
|
|
&:hover {
|
|
|
|
background-color: black;
|
|
|
|
color: lighten(@link-color, 10%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.toolbar-header {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2016-02-02 14:48:22 +00:00
|
|
|
> a:not(.btn) {
|
2014-07-28 14:06:26 +00:00
|
|
|
color: @gray;
|
|
|
|
&:hover {
|
|
|
|
color: @gray-light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|