overleaf/services/web/public/stylesheets/app/editor/left-menu.less

114 lines
1.8 KiB
Text
Raw Normal View History

2014-06-26 11:39:52 -04:00
#left-menu {
position: absolute;
2014-07-01 10:57:55 -04:00
width: 260px;
padding: (@line-height-computed / 2);
2014-06-26 11:39:52 -04:00
top: 0;
bottom: 0;
background-color: #f4f4f4;
z-index: 100;
2014-07-01 10:57:55 -04:00
overflow-y: auto;
overflow-x: hidden;
2014-06-26 11:39:52 -04:00
-webkit-transition: left ease-in-out 0.35s;
transition: left ease-in-out 0.35s;
2014-07-01 10:57:55 -04:00
font-size: 14px;
2014-06-26 11:39:52 -04:00
left: -280px;
&.shown {
left: 0;
}
h4 {
2014-07-01 10:57:55 -04:00
font-family: @font-family-sans-serif;
2014-06-26 11:39:52 -04:00
font-weight: 400;
font-size: 1rem;
margin: (@line-height-computed / 2) 0;
padding-bottom: (@line-height-computed / 4);
color: @gray-light;
2014-07-01 10:57:55 -04:00
border-bottom: 1px solid @gray-lighter;
}
h4:first-child {
margin-top: 0;
}
2014-07-10 09:08:32 -04:00
ul.nav {
a {
&:hover, &:active {
background-color: @link-color;
color: white;
i {
color: white;
}
}
i {
color: @gray;
}
padding: (@line-height-computed / 4);
font-weight: 700;
}
}
ul.nav-downloads {
li {
display: inline-block;
text-align: center;
width: 100px;
a {
color: @gray-dark;
2014-07-02 06:06:20 -04:00
}
.pdf-disabled {
color: @gray-light;
}
i {
2014-07-10 09:08:32 -04:00
margin: (@line-height-computed / 4) 0;
}
}
}
2014-07-01 10:57:55 -04:00
form.settings {
label {
2014-07-10 09:08:32 -04:00
float: left;
2014-07-01 10:57:55 -04:00
font-weight: normal;
color: @gray-dark;
margin-bottom: 0;
2014-07-10 09:08:32 -04:00
padding-top: 7px;
2014-07-01 10:57:55 -04:00
}
select.form-control {
2014-07-10 09:08:32 -04:00
float: right;
width: 50%;
2014-07-01 10:57:55 -04:00
height: 34px;
background: none;
border: none;
box-shadow: none;
color: @link-color;
cursor: pointer;
font-size: 14px;
font-weight: 700;
}
.form-controls {
2014-07-10 09:08:32 -04:00
clear: both;
2014-07-01 10:57:55 -04:00
padding: 0 (@line-height-computed / 4);
&:hover {
background-color: @link-color;
select.form-control {
color: white;
}
label {
color: white;
}
}
2014-07-10 09:08:32 -04:00
&:after {
content:"";
display:table;
clear:both;
}
2014-07-01 10:57:55 -04:00
}
2014-06-26 11:39:52 -04:00
}
}
#left-menu-mask {
.full-size;
opacity: 0.4;
background-color: #999;
z-index: 99;
}