mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-10 01:19:45 +08:00
59 lines
1,003 B
SCSS
59 lines
1,003 B
SCSS
/* Extending Bootstrap */
|
|
|
|
@import "colors";
|
|
|
|
/* navbar avatar image */
|
|
.navbar-nav .avatar {
|
|
border-radius: 30px;
|
|
height: 30px;
|
|
margin-top: -14px;
|
|
position: relative;
|
|
width: 30px;
|
|
top: 5px;
|
|
}
|
|
|
|
// Active tab with error should retain error color if clicked on again
|
|
.nav-tabs > li.active.has-error > a {
|
|
color: $color-apple-blossom;
|
|
}
|
|
|
|
@media (max-width: 886px) {
|
|
// line 18, /usr/local/bundle/gems/bootstrap-sass-3.3.6/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss
|
|
.hidden-xs-custom {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1075px) {
|
|
.col-sm-3-custom {
|
|
float: left;
|
|
width: 25%;
|
|
}
|
|
|
|
.col-sm-9-custom {
|
|
float: left;
|
|
width: 75%;
|
|
}
|
|
}
|
|
|
|
.col-sm-3-custom {
|
|
min-height: 1px;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
position: relative;
|
|
}
|
|
|
|
.col-sm-9-custom {
|
|
min-height: 1px;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
position: relative;
|
|
}
|
|
|
|
.step-comment .col-xs-12 {
|
|
float: none;
|
|
}
|
|
|
|
.result-comment .col-xs-12 {
|
|
float: none;
|
|
}
|