Removed LESS duplicate attributes

pull/1/head
Caleb James DeLisle 7 years ago
parent bfba239770
commit 1d2119b292

@ -27,6 +27,5 @@
"universalSelector": false, "universalSelector": false,
// These rules are really good rules to have around IMO (Caleb) but they're not being honored. // These rules are really good rules to have around IMO (Caleb) but they're not being honored.
"duplicateProperty": false,
"maxCharPerLine": false "maxCharPerLine": false
} }

@ -177,7 +177,6 @@
box-sizing: border-box; box-sizing: border-box;
position: relative; position: relative;
outline: 0; outline: 0;
border: 0;
display: inline-block; display: inline-block;
align-items: center; align-items: center;
padding: 0 6px; padding: 0 6px;

@ -59,7 +59,6 @@
padding-right: 4px; padding-right: 4px;
} }
&.active { &.active {
border-color: #52a8ec;
border-color: rgba(82, 168, 236, 0.8); border-color: rgba(82, 168, 236, 0.8);
} }
&.duplicate { &.duplicate {

@ -297,7 +297,6 @@
} }
select { select {
border: 0px;
margin-left: 5px; margin-left: 5px;
margin-right: 5px; margin-right: 5px;
padding-left: 5px; padding-left: 5px;
@ -530,7 +529,6 @@
input { input {
max-width: ~"calc(100% - 40px)"; max-width: ~"calc(100% - 40px)";
flex: 1; flex: 1;
font-size: 1.5em;
vertical-align: middle; vertical-align: middle;
box-sizing: border-box; box-sizing: border-box;
cursor: auto; cursor: auto;
@ -568,7 +566,6 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
width: 64px; width: 64px;
height: 64px !important; // Allows us to have a nice square outline when focused
font-size: 1em; font-size: 1em;
color: inherit; color: inherit;
height: auto; height: auto;

@ -158,7 +158,6 @@ h4 {
.cp-callout-recent .fa { background-color: @colortheme_drive-bg; } .cp-callout-recent .fa { background-color: @colortheme_drive-bg; }
.cp-hidden { display: none !important; } .cp-hidden { display: none !important; }
.cp-callout-more { .cp-callout-more {
width: auto;
display: inline-block; display: inline-block;
align-content: center; align-content: center;
height: 2em; height: 2em;

@ -52,14 +52,22 @@
text-shadow: 0 1px 5px rgba(0,0,0,.2); text-shadow: 0 1px 5px rgba(0,0,0,.2);
} }
} }
.cp-register-det { .cp-register-det {
margin-top: -7em; margin-top: -7em;
background: #fff; background: #fff;
box-shadow: 0 5px 15px rgba(69,145,196, 0.3); box-shadow: 0 5px 15px rgba(69,145,196, 0.3);
#data { #data {
background: #4591C4; /* fallback for old browsers */ // Old browsers
background: -webkit-linear-gradient(to right, #FF7C4F, #4592C4); /* Chrome 10-25, Safari 5.1-6 */ background: #4591C4;
background: linear-gradient(to right, #FF7C4F, #4592C4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
// Chrome 10-25, Safari 5.1-6
background: -webkit-linear-gradient(to right, #FF7C4F, #4592C4); // lesshint duplicateProperty: false
// W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+
background: linear-gradient(to right, #FF7C4F, #4592C4); // lesshint duplicateProperty: false
padding-top: 3em; padding-top: 3em;
padding-bottom: 7em; padding-bottom: 7em;
padding-left: 30px; padding-left: 30px;

Loading…
Cancel
Save