forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathietf.less
More file actions
175 lines (144 loc) · 7.45 KB
/
ietf.less
File metadata and controls
175 lines (144 loc) · 7.45 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// -*- mode: c -*-
@gray-doc-background: #fafafa; // was #f5f5f5
// Brand palette
// http://www.colourlovers.com/palette/3702908/Key_West_Sunset_2
//
@brand-blue: #2c254a; // space blue
@brand-purple: #59356b; // time purple
@brand-red: #d4584d; // tweaked from sunset 2
@brand-orange: #f69f74;
@brand-yellow: #f8e16d;
//
// Secondary colours, not part of the primary palette
@brand-green: #78D916;
@brand-primary: @brand-blue; // space blue
@brand-success: @brand-green; // green // #3abf03
@brand-info: darken(@brand-yellow, 10%); // yellow
@brand-warning: @brand-orange; // orange
//@brand-danger: darken(saturate(@brand-orange, 60%), 10%);
@brand-danger: darken(saturate(@brand-red, 20%), 8%); // red
@text-color: @gray-darker;
@link-color: lighten(saturate(@brand-primary, 35%), 20%);
@font-family-sans-serif: "PT Sans", "Trebuchet", "Seravek", sans-serif;
@font-family-serif: "PT Serif", "Palatino", "Neue Swift", serif;
@font-family-monospace: "PT Mono", Monaco, monospace;
@font-family-base: @font-family-serif;
// Halloween
//@font-family-sans-serif: "IM Fell English SC", Helvetica, Arial, sans-serif;
//@font-family-serif: "IM Fell English", serif;
////** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
//@font-family-monospace: "Nova Mono", Menlo, Monaco, Consolas, monospace;
//@font-family-base: @font-family-serif;
@mag1: sqrt(sqrt(2));
@mag2: @mag1 * @mag1;
@mag3: @mag2 * @mag1;
@mag4: @mag3 * @mag1;
@maghalf: sqrt(@mag1);
@font-size-base: 15px;
@font-size-large: ((@font-size-base * @mag1)); // 18px
@font-size-small: ((@font-size-base / @mag1)); // 13px
@font-size-h1: ceil((@font-size-base * @mag4)); // 31px
@font-size-h2: ceil((@font-size-base * @mag3)); // 26px
@font-size-h3: ceil((@font-size-base * @mag2)); // 22px
@font-size-h4: ceil((@font-size-base * @mag1)); // 18px
@font-size-h5: ceil((@font-size-base * @maghalf));// 16px
@font-size-h6: @font-size-base;
// 'Caption' faces are actually created for small point sizes, 6-8 pt, but this works well:
@headings-font-family: "PT Sans Caption", sans-serif;
//@headings-font-family: "IM Fell DW Pica", serif; // Halloween
@headings-font-weight: 400;
@component-active-bg: lighten(@brand-primary, 20%);
@table-condensed-cell-padding: 3px;
@btn-primary-bg: lighten(@brand-primary, 30%);
@btn-pass-color: #fff;
@btn-pass-bg: lighten(desaturate(@brand-success, 30%), 20%);
@btn-pass-border: darken(@btn-pass-bg, 5%);
@zindex-tooltip: 1035; //1070;
@navbar-default-bg: lighten(saturate(@brand-red, 25%), 10%);
@navbar-default-link-color: #222;
@navbar-default-link-hover-color: #111;
@navbar-default-link-active-color: #111;
@navbar-default-link-disabled-color: #777;
@navbar-default-toggle-icon-bar-bg: #000;
@navbar-inverse-color: lighten(@gray-light, 5%);
@navbar-inverse-bg: @brand-primary;
@navbar-inverse-link-color: #eee; // lighten(@gray-light, 15%);
@navbar-inverse-link-hover-bg: darken(@navbar-inverse-bg, 4%); // transparent;
@navbar-inverse-link-active-bg: darken(@navbar-inverse-bg, 8%); // darken(@navbar-inverse-bg, 10%);
@nav-link-padding: 10px 11px;
@pagination-active-bg: lighten(@brand-primary, 20%);
@state-success-text: darken(@brand-success, 70%);
@state-success-bg: lighten(desaturate(@brand-success, 20%), 40%);
@state-info-text: darken(@brand-info, 70%);
@state-info-bg: lighten(@brand-info, 32%);
@state-warning-text: darken(@brand-warning, 70%);
@state-warning-bg: lighten(@brand-warning, 10%);
@state-danger-text: darken(@brand-danger, 70%);
@state-danger-bg: lighten(saturate(@brand-danger, 50%), 20%);
@tooltip-max-width: 250px;
@tooltip-color: @state-info-text;
@tooltip-bg: darken(saturate(@state-info-bg, 15%), 25%);
@tooltip-arrow-width: 8px;
@label-primary-bg: lighten(@brand-primary, 20%);
@label-pass-bg: lighten(desaturate(@brand-success, 30%), 20%);
@label-info-bg: darken(saturate(@brand-info, 5%), 12%);
@alert-padding: 8px;
@panel-pass-text: @state-success-text;
@panel-pass-border: lighten(desaturate(@brand-success, 30%), 20%);
@panel-pass-heading-bg: @state-success-bg;
@pre-bg: lighten(@brand-yellow, 28%);
@pre-color: @gray-base;
@blockquote-font-size: (@font-size-base * @mag1);
// New definitions used in the datatracker:
.btn-pass {
.button-variant(@btn-pass-color; @btn-pass-bg; @btn-pass-border);
}
.label-pass {
.label-variant(@label-pass-bg);
}
.label-info {
.label-variant(@label-info-bg);
}
.panel-pass {
.panel-variant(@panel-pass-border; @panel-pass-text; @panel-pass-heading-bg; @panel-pass-border);
}
.position-discuss,
.position-block { background-color: @brand-danger; }
.position-yes { background-color: @brand-success; }
.position-noobj { background-color: hsl(hue(@brand-success), 80%, 85%); }
.position-abstain { background-color: hsl(hue(@brand-warning), 80%, 70%); }
.position-recuse { background-color: hsl(hue(@brand-primary), 80%, 70%); }
.position-norecord { background-color: @body-bg; }
.position-discuss-row,
.position-block-row { background-color: hsl(hue(@brand-danger), 90%, 92%) !important ; }
.position-yes-row { background-color: hsl(hue(@brand-success),100%, 88%) !important ; }
.position-noobj-row { background-color: hsl(hue(@brand-success), 80%, 97%) !important ; }
.position-abstain-row { background-color: hsl(hue(@brand-warning), 90%, 92%) !important ; }
.position-recuse-row { background-color: hsl(hue(@brand-primary), 90%, 95%) !important ; }
.position-norecord-row { background-color: inherit; }
/* like label-success */
#timeline .bar:nth-child(odd) rect { fill: desaturate(@label-success-bg, 10%); }
#timeline .bar:nth-child(odd) rect:hover,
#timeline .bar:nth-child(odd) rect:focus { fill: darken(saturate(@label-success-bg, 20%), 15%); }
/* like label-primary */
#timeline .bar:nth-child(even) rect { fill: lighten(@label-primary-bg, 15%); }
#timeline .bar:nth-child(even) rect:hover,
#timeline .bar:nth-child(even) rect:focus { fill: @label-primary-bg; }
/* like label-warning */
#timeline .gradient.left { stop-color: @label-warning-bg; }
#timeline .gradient.right { stop-color: white; }
// for the submission checkers
.checker-warning { color: darken(saturate(@brand-warning, 20%), 20%); }
.checker-success { color: darken(saturate(@brand-success, 20%), 10%); }
// XXX This change from before is not currently being applied, not sure how
// critical this is:
//--- /Users/lars/Downloads/bootstrap-3.3.5/less/mixins/forms.less 2015-06-16 10:13:22.000000000 +0200
//+++ less/mixins/forms.less 2015-12-02 14:38:25.000000000 +0100
//@@ -16,6 +16,7 @@
// &.radio-inline label,
// &.checkbox-inline label {
// color: @text-color;
//+ background-color: @background-color;
// }
// // Set the border and box shadow on specific inputs to match
// .form-control {