-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_preferences-editor.scss
82 lines (72 loc) · 1.57 KB
/
_preferences-editor.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
.fl-prefsEditor-separatedPanel {
.fl-panelBar {
width: auto;
@include outer-container;
border: 0;
background: none;
.fl-prefsEditor-buttons {
margin-right: 0;
box-shadow: none;
float: right;
border: 0;
border-radius: 0;
background: none;
}
}
.fl-prefsEditor-showHide,
.fl-prefsEditor-reset {
@include hide-text;
display: inline-block;
width: 20px;
height: 20px;
border: 0;
margin: 0;
padding: 0;
min-width: 0;
}
.fl-prefsEditor-reset {
background: url(/uploads/reset.svg);
background-size: cover;
}
.fl-prefsEditor-showHide {
background: url(/uploads/settings.svg);
background-size: cover;
}
}
.flc-slidingPanel-panel.flc-prefsEditor-iframe {
-webkit-overflow-scrolling: touch;
overflow-y: scroll;
}
// Some reader preferences overrides
.fl-theme-bw, .fl-theme-wb, .fl-theme-by, .fl-theme-yb, .fl-theme-lgdg {
// Get rid of problematic backgrounds when a color theme is applied
.lead p, footer {
background: none !important;
}
// Don't bold all links or give them backgrounds
a {
font-weight: 400 !important;
background-color: transparent !important;
}
// Bold links withinactive nav items, headings, and bold text
.nav__item--active, strong, h1, h2, h3, h4, h5, h6 {
a:link, a:visited {
font-weight: 800 !important;
}
}
}
.fl-theme-bw, .fl-theme-by {
hr:after {
color: #000 !important;
}
}
.fl-theme-wb {
hr:after {
color: #fff !important;
}
}
.fl-theme-lgdg {
hr:after {
color: #111 !important;
}
}