diff options
-rw-r--r-- | cosmo/bootstrap.css | 5 | ||||
-rw-r--r-- | cosmo/bootstrap.min.css | 4 | ||||
-rw-r--r-- | cosmo/bootswatch.less | 5 |
3 files changed, 12 insertions, 2 deletions
diff --git a/cosmo/bootstrap.css b/cosmo/bootstrap.css index 69395542..0c78fe49 100644 --- a/cosmo/bootstrap.css +++ b/cosmo/bootstrap.css @@ -5349,9 +5349,12 @@ legend { color: #ffffff; } .label { + min-width: 80px; + min-height: 80px; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; + font-weight: 300; text-shadow: none; } .label-success { @@ -5370,6 +5373,8 @@ legend { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; + font-weight: 300; + text-shadow: none; } .badge-success { background-color: #00a301; diff --git a/cosmo/bootstrap.min.css b/cosmo/bootstrap.min.css index c109ba5b..6eba8abf 100644 --- a/cosmo/bootstrap.min.css +++ b/cosmo/bootstrap.min.css @@ -893,11 +893,11 @@ legend{border-bottom:none;color:#080808;} .form-actions{border-top:none;background-color:#eeeeee;} .dropdown-menu{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .alert{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;text-shadow:none;}.alert-heading,.alert h1,.alert h2,.alert h3,.alert h4,.alert h5,.alert h6{color:#ffffff;} -.label{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;text-shadow:none;}.label-success{background-color:#00a301;} +.label{min-width:80px;min-height:80px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-weight:300;text-shadow:none;}.label-success{background-color:#00a301;} .label-important{background-color:#e51400;} .label-info{background-color:#5192fb;} .label-inverse{background-color:#bbbbbb;} -.badge{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.badge-success{background-color:#00a301;} +.badge{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-weight:300;text-shadow:none;}.badge-success{background-color:#00a301;} .badge-important{background-color:#e51400;} .badge-info{background-color:#5192fb;} .badge-inverse{background-color:#bbbbbb;} diff --git a/cosmo/bootswatch.less b/cosmo/bootswatch.less index e7c713e6..f4038ede 100644 --- a/cosmo/bootswatch.less +++ b/cosmo/bootswatch.less @@ -452,7 +452,10 @@ legend { } .label { + min-width: 80px; + min-height: 80px; .border-radius(0); + font-weight: 300; text-shadow: none; &-success { @@ -475,6 +478,8 @@ legend { .badge { .border-radius(0); + font-weight: 300; + text-shadow: none; &-success { background-color: @green; |