Skip to content

Commit

Permalink
added standard property of css
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashish020202 committed Jan 6, 2024
1 parent 15c36a5 commit f926afc
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/materialize-iso.css
Original file line number Diff line number Diff line change
Expand Up @@ -1753,6 +1753,7 @@
.materialize-iso html input[type="button"],
.materialize-iso input[type="reset"],
.materialize-iso input[type="submit"] {
appearance: button;
-webkit-appearance: button;
cursor: pointer;
}
Expand All @@ -1779,6 +1780,7 @@
height: auto;
}
.materialize-iso input[type="search"] {
appearance: textfield;
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
box-sizing: content-box;
Expand Down Expand Up @@ -4648,6 +4650,7 @@ i.left {
.materialize-iso .waves-circle {
-webkit-transform: translateZ(0);
transform: translateZ(0);
mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}
.materialize-iso .waves-input-wrapper {
Expand All @@ -4666,6 +4669,7 @@ i.left {
height: 2.5em;
line-height: 2.5em;
border-radius: 50%;
mask-image: none;
-webkit-mask-image: none;
}
.materialize-iso .waves-block {
Expand Down Expand Up @@ -4929,6 +4933,7 @@ i.left {
position: relative;
-webkit-transition: opacity 0.4s;
transition: opacity 0.4s;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
.materialize-iso .materialboxed:hover:not(.active) {
Expand Down Expand Up @@ -6063,6 +6068,7 @@ i.left {
font-size: 10px;
}
.materialize-iso input[type=range] {
appearance: none;
-webkit-appearance: none;
}
.materialize-iso input[type=range]::-webkit-slider-runnable-track {
Expand Down Expand Up @@ -7132,6 +7138,7 @@ i.left {
position: fixed;
-webkit-transition: background 0.15s ease-out, top 0s 0.15s;
transition: background 0.15s ease-out, top 0s 0.15s;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
.materialize-iso .picker__frame {
Expand Down Expand Up @@ -7189,6 +7196,8 @@ i.left {
.materialize-iso .picker--opened .picker__holder {
top: 0;
background: transparent;
filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
zoom: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
zoom: 1;
background: rgba(0, 0, 0, 0.32);
Expand Down
9 changes: 9 additions & 0 deletions lib/materialize.min.css
Original file line number Diff line number Diff line change
Expand Up @@ -2292,6 +2292,7 @@
html input[type="button"],
input[type="reset"],
input[type="submit"] {
appearance: button;
-webkit-appearance: button;
cursor: pointer
}
Expand Down Expand Up @@ -2324,6 +2325,7 @@
}

input[type="search"] {
appearance: textfield;
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
box-sizing: content-box
Expand Down Expand Up @@ -5668,6 +5670,7 @@
.waves-circle {
-webkit-transform: translateZ(0);
transform: translateZ(0);
mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%)
}

Expand All @@ -5689,6 +5692,7 @@
height: 2.5em;
line-height: 2.5em;
border-radius: 50%;
mask-image: none;
-webkit-mask-image: none
}

Expand Down Expand Up @@ -5993,6 +5997,7 @@
position: relative;
-webkit-transition: opacity .4s;
transition: opacity .4s;
backface-visibility: hidden;
-webkit-backface-visibility: hidden
}

Expand Down Expand Up @@ -7276,6 +7281,7 @@
}

input[type=range] {
appearance: none;
-webkit-appearance: none
}

Expand Down Expand Up @@ -8577,6 +8583,7 @@
position: fixed;
-webkit-transition: background 0.15s ease-out, top 0s 0.15s;
transition: background 0.15s ease-out, top 0s 0.15s;
backface-visibility: hidden;
-webkit-backface-visibility: hidden
}

Expand Down Expand Up @@ -8642,6 +8649,7 @@
.picker--opened .picker__holder {
top: 0;
background: transparent;
filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
zoom: 1;
background: rgba(0, 0, 0, 0.32);
Expand Down Expand Up @@ -9365,3 +9373,4 @@
stroke-width: 4;
stroke-linecap: round
}
}
6 changes: 6 additions & 0 deletions lib/sugar-web/graphics/css/sugar-200dpi.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ body {
background-color: #c0c0c0;
}
.unselectable {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
Expand All @@ -27,6 +28,7 @@ a {
padding: 0 77px;
color: white;
background-color: #282828;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
Expand Down Expand Up @@ -98,6 +100,7 @@ button {
background-color: #808080;
border: 2px solid transparent;
border-radius: 30px;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
Expand Down Expand Up @@ -232,6 +235,7 @@ input[type='range'] {
cursor: pointer;
background-color: #808080;
border-radius: 30px;
appearance: none;
-webkit-appearance: none !important;
}
input[type='range']::-webkit-slider-thumb {
Expand All @@ -251,6 +255,7 @@ input[type='range']::-webkit-slider-thumb:hover {
}
/* Label */
label {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
Expand Down Expand Up @@ -305,6 +310,7 @@ label {
margin: 0 7.5px;
font-weight: bold;
line-height: 71px;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
Expand Down
6 changes: 6 additions & 0 deletions lib/sugar-web/graphics/css/sugar-96dpi.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ body {
background-color: #c0c0c0;
}
.unselectable {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
Expand All @@ -27,6 +28,7 @@ a {
padding: 0 57px;
color: white;
background-color: #282828;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
Expand Down Expand Up @@ -98,6 +100,7 @@ button {
background-color: #808080;
border: 2px solid transparent;
border-radius: 22px;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
Expand Down Expand Up @@ -232,6 +235,7 @@ input[type='range'] {
cursor: pointer;
background-color: #808080;
border-radius: 22px;
appearance: none;
-webkit-appearance: none !important;
}
input[type='range']::-webkit-slider-thumb {
Expand All @@ -251,6 +255,7 @@ input[type='range']::-webkit-slider-thumb:hover {
}
/* Label */
label {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
Expand Down Expand Up @@ -305,6 +310,7 @@ label {
margin: 0 5.5px;
font-weight: bold;
line-height: 51px;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
Expand Down
2 changes: 2 additions & 0 deletions lib/sugar-web/graphics/css/sugar.less
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ body {
}

.unselectable {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
Expand Down Expand Up @@ -312,6 +313,7 @@ input[type='range'] {
cursor: pointer;
background-color: @button-grey;
border-radius: 2 * @subcell-size;
appearance: none;
-webkit-appearance: none !important;
}

Expand Down
1 change: 1 addition & 0 deletions planet/fonts/material-icons.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
white-space: nowrap;
word-wrap: normal;
direction: ltr;
font-feature-settings: 'liga';
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}

0 comments on commit f926afc

Please sign in to comment.