2016-02-12 23:52:43 +08:00
|
|
|
/* Extending Bootstrap */
|
|
|
|
|
2016-07-14 00:47:06 +08:00
|
|
|
@import "colors";
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
/* navbar avatar image */
|
|
|
|
.navbar-nav .avatar {
|
|
|
|
border-radius: 30px;
|
|
|
|
height: 30px;
|
|
|
|
margin-top: -14px;
|
|
|
|
position: relative;
|
|
|
|
width: 30px;
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
|
2016-08-18 02:49:20 +08:00
|
|
|
// Active tab with error should retain error color if clicked on again
|
2016-07-14 00:47:06 +08:00
|
|
|
.nav-tabs > li.active.has-error > a {
|
2016-08-18 02:49:20 +08:00
|
|
|
color: $color-apple-blossom;
|
2016-08-05 15:12:17 +08:00
|
|
|
}
|
2016-09-08 18:37:06 +08:00
|
|
|
|
|
|
|
@media (max-width: 886px) {
|
2016-09-08 18:43:30 +08:00
|
|
|
// line 18, /usr/local/bundle/gems/bootstrap-sass-3.3.6/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss
|
2016-09-08 18:37:06 +08:00
|
|
|
.hidden-xs-custom {
|
2016-09-08 18:43:30 +08:00
|
|
|
display: none;
|
2016-09-08 18:37:06 +08:00
|
|
|
}
|
2016-09-08 18:43:30 +08:00
|
|
|
}
|
2016-09-14 17:08:40 +08:00
|
|
|
|
|
|
|
@media (min-width: 1075px) {
|
|
|
|
.col-sm-3-custom {
|
|
|
|
float: left;
|
2016-09-14 17:24:19 +08:00
|
|
|
width: 25%;
|
2016-09-14 17:08:40 +08:00
|
|
|
}
|
2016-09-14 17:37:17 +08:00
|
|
|
|
2016-09-14 17:08:40 +08:00
|
|
|
.col-sm-9-custom {
|
|
|
|
float: left;
|
2016-09-14 17:24:19 +08:00
|
|
|
width: 75%;
|
2016-09-14 17:08:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-sm-3-custom {
|
|
|
|
min-height: 1px;
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
2016-09-14 17:24:19 +08:00
|
|
|
position: relative;
|
2016-09-14 17:08:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.col-sm-9-custom {
|
|
|
|
min-height: 1px;
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
2016-09-14 17:24:19 +08:00
|
|
|
position: relative;
|
2016-09-14 17:08:40 +08:00
|
|
|
}
|