2014-06-21 17:20:37 -04:00
|
|
|
.toolbar {
|
|
|
|
height: 40px;
|
|
|
|
border-bottom: 1px solid @toolbar-border-color;
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
color: @gray-light;
|
|
|
|
padding: 6px 12px 8px;
|
|
|
|
&:hover {
|
|
|
|
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
|
|
|
|
color: @gray-dark;
|
|
|
|
}
|
2014-02-12 05:23:40 -05:00
|
|
|
}
|
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
.btn-full-height {
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
border-right: 1px solid @toolbar-border-color;
|
|
|
|
color: @link-color;
|
|
|
|
padding: 6px 12px 8px;
|
|
|
|
&:hover {
|
|
|
|
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
background-color: darken(white, 10%);
|
|
|
|
color: @link-hover-color;
|
|
|
|
}
|
2014-02-12 05:23:40 -05:00
|
|
|
}
|
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
.toolbar-right {
|
|
|
|
float: right;
|
|
|
|
.btn-full-height {
|
|
|
|
border-right: 0;
|
|
|
|
border-left: 1px solid @toolbar-border-color;
|
|
|
|
}
|
2014-02-12 05:23:40 -05:00
|
|
|
}
|
2014-06-21 17:20:37 -04:00
|
|
|
|
|
|
|
&.toolbar-header {
|
|
|
|
box-shadow: 0 0 2px #ccc;
|
2014-02-12 05:23:40 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2014-06-21 17:20:37 -04:00
|
|
|
z-index: 1;
|
2014-02-12 05:23:40 -05:00
|
|
|
}
|
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
&.toolbar-small {
|
|
|
|
height: 32px;
|
|
|
|
a {
|
|
|
|
padding: 4px 2px 2px;
|
|
|
|
margin-left: 6px;
|
2014-03-05 12:55:47 -05:00
|
|
|
}
|
2014-06-21 17:20:37 -04:00
|
|
|
.toolbar-right {
|
|
|
|
a {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 6px;
|
2014-04-09 07:35:23 -04:00
|
|
|
}
|
|
|
|
}
|
2014-02-12 05:23:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
#editor-content {
|
2014-02-12 05:23:40 -05:00
|
|
|
position: absolute;
|
2014-06-21 17:20:37 -04:00
|
|
|
top: 40px;
|
2014-02-12 05:23:40 -05:00
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2014-06-21 17:20:37 -04:00
|
|
|
right: 0;
|
2014-02-12 05:23:40 -05:00
|
|
|
}
|
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
#file-tree {
|
|
|
|
background-color: #fafafa;
|
|
|
|
border-right: 1px solid @toolbar-border-color;
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
ul.file-tree-list {
|
|
|
|
font-size: 0.8rem;
|
2014-06-22 07:10:42 -04:00
|
|
|
margin: 0;
|
|
|
|
padding: (@line-height-computed / 4) 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 32px;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
overflow-y: scroll;
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
ul {
|
|
|
|
margin-left: (@line-height-computed / 2);
|
2014-06-06 09:42:34 -04:00
|
|
|
}
|
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
li {
|
|
|
|
line-height: 2.6;
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
.entity-name {
|
|
|
|
color: @gray-dark;
|
|
|
|
cursor: pointer;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
&:hover {
|
|
|
|
background-color: @gray-lightest;
|
|
|
|
}
|
2014-06-22 15:08:56 -04:00
|
|
|
input {
|
|
|
|
line-height: 1.6;
|
|
|
|
}
|
2014-03-13 09:00:54 -04:00
|
|
|
}
|
2014-06-21 17:20:37 -04:00
|
|
|
|
|
|
|
i.fa-folder-open, i.fa-folder {
|
|
|
|
color: lighten(desaturate(@link-color, 10%), 5%);
|
|
|
|
font-size: 14px;
|
2014-03-13 09:00:54 -04:00
|
|
|
}
|
2014-03-27 08:44:56 -04:00
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
i.fa-file, i.fa-image {
|
|
|
|
color: @gray-light;
|
|
|
|
font-size: 14px;
|
2014-03-27 09:02:34 -04:00
|
|
|
}
|
2014-03-27 08:44:56 -04:00
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
i.toggle {
|
|
|
|
width: 24px;
|
|
|
|
padding: 6px;
|
|
|
|
font-size: 0.7rem;
|
|
|
|
color: @gray
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
|
|
|
> .entity > .entity-name {
|
|
|
|
color: @link-color;
|
|
|
|
border-right: 4px solid @link-color;
|
|
|
|
font-weight: bold;
|
|
|
|
i.fa-folder-open, i.fa-folder, i.fa-file, i.fa-image {
|
|
|
|
color: @link-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-27 08:44:56 -04:00
|
|
|
}
|
|
|
|
}
|
2014-06-21 17:20:37 -04:00
|
|
|
}
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
.ui-layout-resizer {
|
|
|
|
width: 6px;
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
.ui-layout-toggler {
|
|
|
|
color: #999;
|
|
|
|
font-family: FontAwesome;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
font-size: 16px !important;
|
|
|
|
line-height: 50px;
|
2014-02-12 05:23:40 -05:00
|
|
|
&:hover {
|
2014-06-21 17:20:37 -04:00
|
|
|
background-color: #ddd;
|
2014-02-12 05:23:40 -05:00
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-21 17:20:37 -04:00
|
|
|
.ui-layout-resizer-west.ui-layout-resizer-open, .ui-layout-resizer-east.ui-layout-resizer-closed {
|
|
|
|
.ui-layout-toggler {
|
|
|
|
&:before {
|
|
|
|
content: "\f104"
|
2014-02-12 05:23:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-21 17:20:37 -04:00
|
|
|
.ui-layout-resizer-east.ui-layout-resizer-open, .ui-layout-resizer-west.ui-layout-resizer-closed {
|
|
|
|
.ui-layout-toggler {
|
|
|
|
&:before {
|
|
|
|
content: "\f105"
|
2014-02-12 05:23:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-21 17:20:37 -04:00
|
|
|
.ui-layout-resizer-dragging {
|
2014-02-12 05:23:40 -05:00
|
|
|
background-color: #ddd;
|
2014-06-21 17:20:37 -04:00
|
|
|
}
|