Skip to content

Commit

Permalink
Get rid of more non-standard -moz- attributes (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
Croydon committed Jul 28, 2023
1 parent f44a127 commit 430f59a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 27 deletions.
2 changes: 1 addition & 1 deletion data/theme/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ body
flex-flow: column;
/*overflow-y: hidden;*/
user-select: none;
-moz-user-select: none;
}

#tabbrowser-tabs {
Expand Down Expand Up @@ -144,6 +143,7 @@ body[data-tab-buttons-position="right"] .tabbrowser-tab .tab-buttons .tab-close-
/* Apply crisp rendering for favicons at exactly 2dppx resolution */
@media (resolution: 2dppx) {
.tab-icon-image {
image-rendering: crisp-edges;
image-rendering: -moz-crisp-edges;
}
}
31 changes: 5 additions & 26 deletions notes/assets/css/main.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
@import url("font-awesome.min.css");
/* @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,600"); */

/*
Prologue by HTML5 UP | html5up.net/license | @ajlkn | CC BY 3.0 license
*/
/* Prologue by HTML5 UP | html5up.net/license | @ajlkn | CC BY 3.0 license */

/* Reset */

Expand Down Expand Up @@ -1777,7 +1775,7 @@
form select,
form textarea {
position: relative;
-moz-appearance: none;
appearance: none;
display: block;
border: 0;
outline: 0;
Expand Down Expand Up @@ -1815,26 +1813,10 @@
color: #555 !important;
}

form ::-webkit-input-placeholder {
form ::placeholder {
color: #555 !important;
}

form :-moz-placeholder {
color: #555 !important;
}

form ::-moz-placeholder {
color: #555 !important;
}

form :-ms-input-placeholder {
color: #555 !important;
}

form ::-moz-focus-inner {
border: 0;
}

/* Table */

table {
Expand Down Expand Up @@ -1946,7 +1928,7 @@
font-style: normal;
font-weight: normal;
line-height: 1;
-moz-osx-font-smoothing: grayscale;
font-smooth: antialiased;
}

.icon > .label {
Expand All @@ -1956,9 +1938,6 @@
/* Header */

#header {
display: -moz-flex;
display: -webkit-flex;
display: -ms-flex;
display: flex;
flex-direction: column;
justify-content: space-between;
Expand Down Expand Up @@ -2382,7 +2361,7 @@
text-decoration: none;
font-style: normal;
font-weight: normal;
-moz-osx-font-smoothing: grayscale;
font-smooth: antialiased;
content: '\f0c9';
color: #fff;
font-size: 18px;
Expand Down

0 comments on commit 430f59a

Please sign in to comment.