Skip to content

Commit

Permalink
FIX: CSS - Define the standard property for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
aljawaid committed Feb 3, 2023
1 parent 30a75f5 commit 419f3b5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Assets/css/themes/Github.css
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,8 @@ input[type="text"]:not(.input-addon-field) {
padding-left: 4px;
font-family: sans-serif;
-webkit-appearance: none;
-moz-appearance: none
-moz-appearance: none;
appearance: none;
}

input[type="number"]::-webkit-input-placeholder,
Expand Down Expand Up @@ -1097,7 +1098,8 @@ ul.form-errors li {
color: #999;
margin: 0;
-webkit-appearance: none;
-moz-appearance: none
-moz-appearance: none;
appearance: none;
}

.input-addon-field:first-child {
Expand Down Expand Up @@ -1237,6 +1239,7 @@ a.btn {
.btn {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font-size: 1.2em;
font-weight: normal;
cursor: pointer;
Expand All @@ -1246,7 +1249,7 @@ a.btn {
margin: 0;
border: 1px solid #ddd;
background: #f5f5f5;
color: #333
color: #333;
}

.btn:hover,
Expand Down Expand Up @@ -2342,6 +2345,7 @@ td.board-column-task-collapsed {
.board-rotation {
white-space: nowrap;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
Expand Down

0 comments on commit 419f3b5

Please sign in to comment.