sync
[bootswatch] / flatly / bootswatch.less
index a0aa5c2..391638a 100644 (file)
@@ -1,4 +1,4 @@
-// Flatly 3.0.0
+// Flatly 3.0.3
 // Bootswatch
 // -----------------------------------------------------
 
@@ -8,25 +8,38 @@
 
 // Buttons ====================================================================
 
+.btn:active {
+       .box-shadow(none);
+}
+
+.btn-group.open .dropdown-toggle {
+       .box-shadow(none);
+}
+
 // Typography =================================================================
 
-.text-primary {
+.text-primary,
+.text-primary:hover {
        color: @brand-primary;
 }
 
-.text-success {
+.text-success,
+.text-success:hover {
        color: @brand-success;
 }
 
-.text-danger {
+.text-danger,
+.text-danger:hover {
        color: @brand-danger;
 }
 
-.text-warning {
+.text-warning,
+.text-warning:hover {
        color: @brand-warning;
 }
 
-.text-info {
+.text-info,
+.text-info:hover {
        color: @brand-info;
 }
 
 
 // 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 {
 
 // Navs =======================================================================
 
-.pagination {
+.nav {
+       .open > a,
+       .open > a:hover,
+       .open > a:focus {
+               border-color: transparent;
+       }
+}
 
-       a {
+.pagination {
+       
+       a,
+       a:hover {
                color: #fff;
        }
 
 }
 
 .pager {
-       a {
+       a,
+       a:hover {
                color: #fff;
        }
 
 }
 
 // Containers =================================================================
+
+.well {
+       .box-shadow(none);
+       border-width: 0;
+}