mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 03:12:33 +01:00
Fine tune CSS and fix CSS regressions in last commit
Related commit:
- e917213e81
Specifically, intended font size was no longer
set properly for mobile in popup panel.
This commit is contained in:
parent
051cb27f9b
commit
7f55e5d54d
@ -183,9 +183,6 @@ body.updating .listEntry.checked.obsolete .updating {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (pointer: coarse) {
|
@media (pointer: coarse) {
|
||||||
body {
|
|
||||||
font: 16px/1.5 sans-serif;
|
|
||||||
}
|
|
||||||
.listEntries {
|
.listEntries {
|
||||||
margin-inline-start: 0;
|
margin-inline-start: 0;
|
||||||
-webkit-margin-start: 0;
|
-webkit-margin-start: 0;
|
||||||
|
@ -1,9 +1,3 @@
|
|||||||
body {
|
|
||||||
border: 0;
|
|
||||||
font: 14px/1.5 sans-serif;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
.entries {
|
.entries {
|
||||||
margin: 0.5em 0;
|
margin: 0.5em 0;
|
||||||
margin-inline-start: 2em;
|
margin-inline-start: 2em;
|
||||||
@ -12,9 +6,3 @@ body {
|
|||||||
.entry {
|
.entry {
|
||||||
margin: 0.5em 0;
|
margin: 0.5em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (pointer: coarse) {
|
|
||||||
body {
|
|
||||||
font: 16px/1.5 sans-serif;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
body {
|
||||||
|
font: 14px/1.5 sans-serif;
|
||||||
|
}
|
||||||
|
@media (pointer: coarse) {
|
||||||
|
body {
|
||||||
|
font: 16px/1.5 sans-serif;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background-color: var(--bg-0);
|
||||||
|
border: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
color: var(--fg-0);
|
||||||
|
fill: var(--fg-0);
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'FontAwesome';
|
font-family: 'FontAwesome';
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
@ -14,16 +31,6 @@
|
|||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
}
|
}
|
||||||
body {
|
|
||||||
background-color: var(--bg-0);
|
|
||||||
border: 0;
|
|
||||||
box-sizing: border-box;
|
|
||||||
color: var(--fg-0);
|
|
||||||
fill: var(--fg-0);
|
|
||||||
font: 14px/1.5 sans-serif;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
code {
|
code {
|
||||||
background-color: var(--bg-code);
|
background-color: var(--bg-code);
|
||||||
padding: 0 0.25em;
|
padding: 0 0.25em;
|
||||||
|
@ -1,10 +1,6 @@
|
|||||||
html, body {
|
html, body {
|
||||||
border: 0;
|
|
||||||
font: 14px/1.5 sans-serif;
|
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin: 0;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 0;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
@ -83,7 +79,6 @@ body:not(.canUpdateShortcuts) .tabButton[data-pane="shortcuts.html"] {
|
|||||||
@media (pointer: coarse) {
|
@media (pointer: coarse) {
|
||||||
#dashboard-nav {
|
#dashboard-nav {
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
font: 16px/1.5 sans-serif;
|
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
#dashboard-nav .logo {
|
#dashboard-nav .logo {
|
||||||
|
@ -1,13 +1,8 @@
|
|||||||
body {
|
body {
|
||||||
background-color: white;
|
|
||||||
border: 0;
|
|
||||||
color: black;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
margin: 0;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 0;
|
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
}
|
}
|
||||||
textarea {
|
textarea {
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
/* Internal CSS values */
|
/* Internal CSS values */
|
||||||
body {
|
body {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
min-width: 375px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@ -128,7 +129,6 @@ body.needSave #revertRules {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
min-width: 4em;
|
|
||||||
}
|
}
|
||||||
.toolRibbon [data-i18n] {
|
.toolRibbon [data-i18n] {
|
||||||
font-size: x-small;
|
font-size: x-small;
|
||||||
|
@ -34,9 +34,3 @@ hr {
|
|||||||
body.advancedUser [href="advanced-settings.html"] {
|
body.advancedUser [href="advanced-settings.html"] {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (pointer: coarse) {
|
|
||||||
body {
|
|
||||||
font: 16px/1.5 sans-serif;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user