mirror of https://github.com/zulip/zulip.git
styles: Finish removing manual antialiasing configuration.
Followup from commit ddb965110f
.
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
parent
abbd8a7f45
commit
4de3bbeafa
|
@ -17,7 +17,6 @@ i{{baseSelector}} {
|
|||
line-height: 100%;
|
||||
|
||||
text-decoration: inherit;
|
||||
text-rendering: auto;
|
||||
display: inline-block;
|
||||
speak: none;
|
||||
}
|
||||
|
|
|
@ -4,8 +4,6 @@ html {
|
|||
}
|
||||
|
||||
body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
margin: 0;
|
||||
background-color: hsl(0, 0%, 100%);
|
||||
color: hsl(0, 0%, 27%);
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
font-size: 1rem;
|
||||
line-height: 1.5;
|
||||
overflow: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
||||
|
||||
|
||||
|
@ -72,9 +71,6 @@
|
|||
&::after {
|
||||
display: inline-block;
|
||||
font: normal normal normal 16px/1 FontAwesome;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
cursor: pointer;
|
||||
content: "\f0c1";
|
||||
|
|
|
@ -226,7 +226,6 @@ html {
|
|||
}
|
||||
|
||||
.new-style {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.register-form.new-style {
|
||||
|
|
|
@ -81,8 +81,6 @@ body {
|
|||
height: 100%;
|
||||
font-weight: 300;
|
||||
font-size: 17px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
/* The API tabbed content tends to have a lot of code blocks,
|
||||
|
@ -192,7 +190,6 @@ body {
|
|||
display: block;
|
||||
font: normal normal normal 14px/1 FontAwesome;
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
|
||||
content: "\f107";
|
||||
margin-right: 5px;
|
||||
|
@ -210,7 +207,6 @@ body {
|
|||
display: inline-block;
|
||||
font: normal normal normal 14px/1 FontAwesome;
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
|
||||
content: "\f0d9";
|
||||
margin-right: 10px;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
.codehilite pre {
|
||||
background-color: hsl(0, 0%, 100%);
|
||||
-webkit-font-smoothing: auto;
|
||||
}
|
||||
.codehilite .hll {
|
||||
background-color: hsl(60, 100%, 90%);
|
||||
|
|
|
@ -278,7 +278,6 @@ td .button {
|
|||
display: inline-block;
|
||||
font: normal normal normal 12px/1 FontAwesome;
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
}
|
||||
|
||||
&.active {
|
||||
|
|
|
@ -23,7 +23,6 @@ if __name__ == "__main__":
|
|||
properties[Profiles.CSS_LEVEL_2]['mso-table-lspace'] = r'0|{num}(pt)'
|
||||
properties[Profiles.CSS_LEVEL_2]['mso-table-rspace'] = r'0|{num}(pt)'
|
||||
properties[Profiles.CSS_LEVEL_2]['-webkit-text-size-adjust'] = r'none|auto|{percentage}'
|
||||
properties[Profiles.CSS_LEVEL_2]['-webkit-font-smoothing'] = r'none|antialiased|subpixel-antialiased'
|
||||
properties[Profiles.CSS_LEVEL_2]['mso-hide'] = 'all'
|
||||
properties[Profiles.CSS_LEVEL_2]['pointer-events'] = (r'auto|none|visiblePainted|'
|
||||
r'visibleFill|visibleStroke|'
|
||||
|
|
Loading…
Reference in New Issue