Browse Source

border color adjustments

pull/16/head
gilbN 6 years ago
parent
commit
7b898312a9
  1. 17
      CSS/themes/radarr/radarr-base.css

17
CSS/themes/radarr/radarr-base.css

@ -128,7 +128,7 @@ body {
.form-control {
color: #FFF;
background-color: rgba(0, 0, 0, .25) !important;
border: 1px solid rgba(0, 0, 0, .25);
border: 1px solid transparent;
}
.form-control:focus {
@ -406,7 +406,16 @@ a:focus, a:hover {
legend {
color: #FFFFFF;
}
/* nav bar tabs */
.nav-tabs {
border-bottom: 1px solid #ddd !important;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified>li>a {
margin-bottom: -1px;
}
}
/* Settings Page - Profile */
/*thingy*/
@ -496,7 +505,7 @@ pre {
/* YES/NO Switch */
.well {
background-color: rgba(0, 0, 0, .25);
border: 1px solid rgba(0, 0, 0, .25);
border: 1px solid transparent;
}
.toggle p span {
color: rgba(0, 0, 0, 0);
@ -579,13 +588,13 @@ pre {
.modal-footer > button:not([class*="btn-primary"]):not([class*="btn-danger"]):not([class*="btn-success"]) {
color: #FFF;
background-color: rgba(0, 0, 0, .25);
border-color: rgba(0, 0, 0, .25);
border-color: transparent;
outline-style: none;
}
.modal-footer > button:hover:not([class*="btn-primary"]):not([class*="btn-danger"]):not([class*="btn-success"]) {
color: #FFF;
background-color: rgba(255, 255, 255, .25);
border-color: rgba(255, 255, 255, .25);
border-color: transparent;
outline-style: none;
}
/* green button */

Loading…
Cancel
Save