| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- // Flatly 3.1.1
- // Bootswatch
- // -----------------------------------------------------
- @import url("//fonts.googleapis.com/css?family=Lato:400,700,400italic");
- // Navbar =====================================================================
- // Buttons ====================================================================
- .btn:active {
- .box-shadow(none);
- }
- .btn-group.open .dropdown-toggle {
- .box-shadow(none);
- }
- // Typography =================================================================
- .text-primary,
- .text-primary:hover {
- color: @brand-primary;
- }
- .text-success,
- .text-success:hover {
- color: @brand-success;
- }
- .text-danger,
- .text-danger:hover {
- color: @brand-danger;
- }
- .text-warning,
- .text-warning:hover {
- color: @brand-warning;
- }
- .text-info,
- .text-info:hover {
- color: @brand-info;
- }
- // Tables =====================================================================
- table,
- .table {
- a {
- text-decoration: underline;
- }
- .success,
- .warning,
- .danger,
- .info {
- color: #fff;
- a {
- color: #fff;
- }
- }
- > thead > tr > th,
- > tbody > tr > th,
- > tfoot > tr > th,
- > thead > tr > td,
- > tbody > tr > td,
- > tfoot > tr > td {
- border: none;
- }
- &-bordered > thead > tr > th,
- &-bordered > tbody > tr > th,
- &-bordered > tfoot > tr > th,
- &-bordered > thead > tr > td,
- &-bordered > tbody > tr > td,
- &-bordered > tfoot > tr > td {
- border: 1px solid @table-border-color;
- }
- }
- // Forms ======================================================================
- .form-control,textarea.form-control,
- input[type="text"],
- input[type="password"],
- input[type="datetime"],
- input[type="datetime-local"],
- input[type="date"],
- input[type="month"],
- input[type="time"],
- input[type="week"],
- input[type="number"],
- input[type="email"],
- input[type="url"],
- input[type="search"],
- input[type="tel"],
- input[type="color"],
- .uneditable-input {
- border-width: 2px;
- .box-shadow(none);
- &:focus {
- .box-shadow(none);
- }
- }
- .has-warning {
- .help-block,
- .control-label {
- color: @brand-warning;
- }
- .form-control,
- .form-control:focus {
- border: 2px solid @brand-warning;
- }
- }
- .has-error {
- .help-block,
- .control-label {
- color: @brand-danger;
- }
- .form-control,
- .form-control:focus {
- border: 2px solid @brand-danger;
- }
- }
- .has-success {
- .help-block,
- .control-label {
- color: @brand-success;
- }
- .form-control,
- .form-control:focus {
- border: 2px solid @brand-success;
- }
- }
- // Navs =======================================================================
- .nav {
- .open > a,
- .open > a:hover,
- .open > a:focus {
- border-color: transparent;
- }
- }
- .pager {
- a,
- a:hover {
- color: #fff;
- }
- .disabled {
- &>a,
- &>a:hover,
- &>a:focus,
- &>span {
- background-color: @pagination-disabled-bg;
- }
- }
- }
- // Indicators =================================================================
- .alert {
- a,
- .alert-link {
- color: #fff;
- text-decoration: underline;
- }
- }
- // Progress bars ==============================================================
- .progress {
- height: 10px;
- .box-shadow(none);
- }
- // Containers =================================================================
- .well {
- .box-shadow(none);
- }
|