app/assets/stylesheets/components/_inputs.scss in arctic_admin-1.2.5 vs app/assets/stylesheets/components/_inputs.scss in arctic_admin-1.2.6
- old
+ new
@@ -55,9 +55,26 @@
box-shadow: 0 1px 0 rgba(0,0,0,.05);
border: none;
cursor: pointer;
}
+input[type="checkbox"] {
+ height: 15px;
+ width: 15px;
+ -webkit-appearance: none!important;
+ background-color: #fff;
+ border: 1px solid #e6e6e6;
+ border-radius: 3px;
+ box-sizing: border-box;
+ @include outline();
+ @include transition-button();
+
+ &:checked {
+ border-color: $primary-color;
+ background-color: $primary-color;
+ }
+}
+
select {
background-color: #fff;
background-image: none;
border: 1px solid #e4eaec;
border-radius: 3px;
\ No newline at end of file