##// END OF EJS Templates
Closed
Pull request !2251 Created on Fri, 07 Dec 2018 07:29:44, by
  • Bug 5509 - remove !important from css rules.
Pull request versions not available.
ver Time Author Commit Description
latest r3048:ec80e5e97132
Bug 5509 - remove \!important from css rules.
@@ -213,12 +213,12 b' div.diffblock {'
213 213 table.code-difftable {
214 214 border-collapse: collapse;
215 215 width: 99%;
216 border-radius: 0px !important;
216 border-radius: 0px;
217 217
218 218 td {
219 padding: 0 !important;
220 background: none !important;
221 border: 0 !important;
219 padding: 0;
220 background: none;
221 border: 0;
222 222 }
223 223
224 224 .context {
@@ -245,16 +245,16 b' table.code-difftable {'
245 245
246 246 /** LINE NUMBERS **/
247 247 .lineno {
248 padding-left: 2px !important;
248 padding-left: 2px;
249 249 padding-right: 2px;
250 250 text-align: right;
251 251 width: 32px;
252 252 -moz-user-select: none;
253 253 -webkit-user-select: none;
254 border-right: @border-thickness solid @grey5 !important;
255 border-left: 0px solid #CCC !important;
256 border-top: 0px solid #CCC !important;
257 border-bottom: none !important;
254 border-right: @border-thickness solid @grey5;
255 border-left: 0px solid #CCC;
256 border-top: 0px solid #CCC;
257 border-bottom: none;
258 258
259 259 a {
260 260 &:extend(pre);
@@ -272,7 +272,7 b' table.code-difftable {'
272 272 }
273 273
274 274 .lineno-inline {
275 background: none repeat scroll 0 0 #FFF !important;
275 background: none repeat scroll 0 0 #FFF;
276 276 padding-left: 2px;
277 277 padding-right: 2px;
278 278 text-align: right;
@@ -303,7 +303,7 b' table.code-difftable {'
303 303 // Comments
304 304
305 305 div.comment:target {
306 border-left: 6px solid @comment-highlight-color !important;
306 border-left: 6px solid @comment-highlight-color;
307 307 padding-left: 3px;
308 308 margin-left: -9px;
309 309 }
@@ -540,7 +540,7 b' div.search-code-body {'
540 540 padding-left: 10px;
541 541 }
542 542 td.line {
543 border-right: 1px solid #ccc !important;
543 border-right: 1px solid #ccc;
544 544 padding-right: 10px;
545 545 text-align: right;
546 546 font-family: "Lucida Console",Monaco,monospace;
@@ -556,7 +556,7 b' div.annotatediv { margin-left: 2px; marg'
556 556 .code-highlight {
557 557 margin: 0; padding: 0; border-left: @border-thickness solid @grey5;
558 558 pre, .linenodiv pre { padding: 0 5px; margin: 0; }
559 pre div:target {background-color: @comment-highlight-color !important;}
559 pre div:target {background-color: @comment-highlight-color;}
560 560 }
561 561
562 562 .linenos a { text-decoration: none; }
@@ -566,7 +566,7 b' div.annotatediv { margin-left: 2px; marg'
566 566 .CodeMirror ::selection { background: @rchighlightblue; }
567 567 .CodeMirror ::-moz-selection { background: @rchighlightblue; }
568 568
569 .code { display: block; border:0px !important; }
569 .code { display: block; border:0px; }
570 570 .code-highlight, /* TODO: dan: merge codehilite into code-highlight */
571 571 .codehilite {
572 572 .hll { background-color: #ffffcc }
@@ -720,7 +720,7 b' input.filediff-collapse-state {'
720 720 }
721 721 &.diffset-comments-disabled {
722 722 .cb-comment-box-opener, .comment-inline-form, .cb-comment-add-button {
723 display: none !important;
723 display: none;
724 724 }
725 725 }
726 726 }
@@ -801,7 +801,7 b' input.filediff-collapse-state {'
801 801 clear: both;
802 802 }
803 803 .filediff-heading:hover {
804 background: #e1e9f4 !important;
804 background: #e1e9f4;
805 805 }
806 806
807 807 .filediff-menu {
@@ -953,11 +953,11 b' table.cb {'
953 953 }
954 954
955 955 /* intentionally general selector since .cb-line-selected must override it
956 and they both use !important since the td itself may have a random color
956 and they both use since the td itself may have a random color
957 957 generated by annotation blocks. TLDR: if you change it, make sure
958 958 annotated block selection and line selection in file view still work */
959 959 .cb-line-fresh .cb-content {
960 background: white !important;
960 background: white;
961 961 }
962 962 .cb-warning {
963 963 background: #fff4dd;
@@ -1000,7 +1000,7 b' table.cb {'
1000 1000 font-size: 12.35px;
1001 1001
1002 1002 &.cb-line-selected .cb-code {
1003 background: @comment-highlight-color !important;
1003 background: @comment-highlight-color;
1004 1004 }
1005 1005
1006 1006 span.cb-code {
@@ -1050,7 +1050,7 b' table.cb {'
1050 1050 }
1051 1051 &.cb-line-selected > div {
1052 1052 display: block;
1053 background: @comment-highlight-color !important;
1053 background: @comment-highlight-color;
1054 1054 line-height: @cb-line-height;
1055 1055 color: rgba(0, 0, 0, 0.3);
1056 1056 }
@@ -1069,7 +1069,7 b' table.cb {'
1069 1069 content: attr(data-line-no);
1070 1070 }
1071 1071 &.cb-line-selected a {
1072 background: @comment-highlight-color !important;
1072 background: @comment-highlight-color;
1073 1073 }
1074 1074
1075 1075 a {
@@ -150,7 +150,7 b' div.CodeMirror span.CodeMirror-nonmatchi'
150 150 }
151 151
152 152 .CodeMirror-scroll {
153 overflow: scroll !important; /* Things will break if this is overridden */
153 overflow: scroll; /* Things will break if this is overridden */
154 154 /* 30px is the magic margin used to hide the element's real scrollbars */
155 155 /* See overflow: hidden in .CodeMirror */
156 156 margin-bottom: -30px; margin-right: -30px;
@@ -236,7 +236,7 b' tr.inline-comments div {'
236 236
237 237 .markdown-block p,
238 238 .rst-block p {
239 margin: .5em 0 !important;
239 margin: .5em 0;
240 240 // TODO: lisa: This is needed because of other rst !important rules :[
241 241 }
242 242 }
@@ -122,7 +122,7 b''
122 122 .deform-seq-container {
123 123 .deform-seq-item {
124 124 .form-group {
125 width: 45% !important; padding: 0 2px; float: left; clear: none;
125 width: 45% padding: 0 2px; float: left; clear: none;
126 126 }
127 127 }
128 128 }
@@ -131,7 +131,7 b''
131 131 .deform-seq-container {
132 132 .deform-seq-item {
133 133 .form-group {
134 width: 30% !important; padding: 0 2px; float: left; clear: none;
134 width: 30% padding: 0 2px; float: left; clear: none;
135 135 }
136 136 }
137 137 }
@@ -16,7 +16,7 b' div.diffblock.margined.comm tr {'
16 16
17 17 // TODO: anderson: fixing mouse-over bug.
18 18 // why was it vertical-align baseline in first place??
19 vertical-align: top !important;
19 vertical-align: top;
20 20 // Force width and display for IE 9
21 21 .add-comment-content {
22 22 display: inline-block;
@@ -62,14 +62,14 b' div.diffblock.margined.comm tr {'
62 62
63 63 &.hover, &.selected {
64 64 &, del, ins {
65 background-color: lighten(@alert3, 10%) !important;
65 background-color: lighten(@alert3, 10%);
66 66 }
67 67 }
68 68
69 69 &.commenting {
70 70 &, del, ins {
71 background-image: none !important;
72 background-color: lighten(@alert4, 10%) !important;
71 background-image: none;
72 background-color: lighten(@alert4, 10%);
73 73 }
74 74 }
75 75 }
@@ -28,11 +28,11 b' a { cursor: pointer; }'
28 28 }
29 29
30 30 .pull-right {
31 float: right !important;
31 float: right;
32 32 }
33 33
34 34 .pull-left {
35 float: left !important;
35 float: left;
36 36 }
37 37
38 38 .block-left {
@@ -121,45 +121,45 b' div.markdown-block h3,'
121 121 div.markdown-block h4,
122 122 div.markdown-block h5,
123 123 div.markdown-block h6 {
124 border-bottom: none !important;
125 padding: 0 !important;
126 overflow: visible !important;
124 border-bottom: none;
125 padding: 0;
126 overflow: visible;
127 127 }
128 128
129 129 div.markdown-block h1 {
130 130 font-size: 32px;
131 margin: 15px 0 15px 0 !important;
132 padding-bottom: 5px !important;
131 margin: 15px 0 15px 0;
132 padding-bottom: 5px;
133 133 }
134 134
135 135 div.markdown-block h2 {
136 font-size: 24px !important;
137 margin: 34px 0 10px 0 !important;
138 border-top: 3px #e6e5e5 solid !important;
139 padding-top: 15px !important;
140 padding-bottom: 8px !important;
136 font-size: 24px;
137 margin: 34px 0 10px 0;
138 border-top: 3px #e6e5e5 solid;
139 padding-top: 15px;
140 padding-bottom: 8px;
141 141 }
142 142
143 143 div.markdown-block h3 {
144 font-size: 18px !important;
145 margin: 30px 0 8px 0 !important;
146 padding-bottom: 2px !important;
144 font-size: 18px;
145 margin: 30px 0 8px 0;
146 padding-bottom: 2px;
147 147 }
148 148
149 149 div.markdown-block h4 {
150 font-size: 13px !important;
151 margin: 18px 0 3px 0 !important;
150 font-size: 13px;
151 margin: 18px 0 3px 0;
152 152 }
153 153
154 154 div.markdown-block h5 {
155 font-size: 12px !important;
156 margin: 15px 0 3px 0 !important;
155 font-size: 12px;
156 margin: 15px 0 3px 0;
157 157 }
158 158
159 159 div.markdown-block h6 {
160 160 font-size: 12px;
161 161 color: #777777;
162 margin: 15px 0 3px 0 !important;
162 margin: 15px 0 3px 0;
163 163 }
164 164
165 165 div.markdown-block hr {
@@ -177,22 +177,22 b' div.markdown-block blockquote,'
177 177 div.markdown-block dl,
178 178 div.markdown-block li,
179 179 div.markdown-block table {
180 margin: 3px 0px 13px 0px !important;
181 color: #424242 !important;
182 font-size: 13px !important;
183 font-family: "Helvetica" !important;
184 font-weight: normal !important;
185 overflow: visible !important;
186 line-height: 140% !important;
180 margin: 3px 0px 13px 0px;
181 color: #424242;
182 font-size: 13px;
183 font-family: "Helvetica";
184 font-weight: normal ;
185 overflow: visible;
186 line-height: 140%;
187 187 }
188 188
189 189 div.markdown-block pre {
190 margin: 3px 0px 13px 0px !important;
190 margin: 3px 0px 13px 0px;
191 191 padding: .5em;
192 color: #424242 !important;
193 font-size: 13px !important;
194 overflow: visible !important;
195 line-height: 140% !important;
192 color: #424242;
193 font-size: 13px;
194 overflow: visible;
195 line-height: 140%;
196 196 background-color: @grey7;
197 197 }
198 198
@@ -209,26 +209,26 b' div.markdown-block strong {'
209 209
210 210 div.markdown-block ul,
211 211 div.markdown-block ol {
212 padding-left: 30px !important;
213 margin-top: 0px !important;
214 margin-bottom: 18px !important;
212 padding-left: 30px;
213 margin-top: 0px;
214 margin-bottom: 18px;
215 215 }
216 216
217 217 div.markdown-block ul li,
218 218 div.markdown-block ol li {
219 list-style: disc !important;
220 margin: 6px !important;
221 padding: 0 !important;
219 list-style: disc;
220 margin: 6px;
221 padding: 0;
222 222 }
223 223
224 224 div.markdown-block ol li {
225 list-style: decimal !important;
225 list-style: decimal;
226 226 }
227 227
228 228 /*
229 229 div.markdown-block a,
230 230 div.markdown-block a:visited {
231 color: #4183C4 !important;
231 color: #4183C4;
232 232 background-color: inherit;
233 233 text-decoration: none;
234 234 }
@@ -301,43 +301,43 b' div.rst-block h3,'
301 301 div.rst-block h4,
302 302 div.rst-block h5,
303 303 div.rst-block h6 {
304 border-bottom: 0 !important;
305 margin: 0 !important;
306 padding: 0 !important;
307 line-height: 1.5em !important;
304 border-bottom: 0;
305 margin: 0;
306 padding: 0;
307 line-height: 1.5em;
308 308 }
309 309
310 310
311 311 div.rst-block h1:first-child {
312 padding-top: .25em !important;
312 padding-top: .25em;
313 313 }
314 314
315 315 div.rst-block h2,
316 316 div.rst-block h3 {
317 margin: 1em 0 !important;
317 margin: 1em 0;
318 318 }
319 319
320 320 div.rst-block h2 {
321 margin-top: 1.5em !important;
322 border-top: 4px solid #e0e0e0 !important;
323 padding-top: .5em !important;
321 margin-top: 1.5em;
322 border-top: 4px solid #e0e0e0;
323 padding-top: .5em;
324 324 }
325 325
326 326 div.rst-block p {
327 color: black !important;
328 margin: 1em 0 !important;
329 line-height: 1.5em !important;
327 color: black;
328 margin: 1em 0;
329 line-height: 1.5em;
330 330 }
331 331
332 332 div.rst-block ul {
333 list-style: disc !important;
334 margin: 1em 0 1em 2em !important;
333 list-style: disc;
334 margin: 1em 0 1em 2em;
335 335 clear: both;
336 336 }
337 337
338 338 div.rst-block ol {
339 339 list-style: decimal;
340 margin: 1em 0 1em 2em !important;
340 margin: 1em 0 1em 2em;
341 341 }
342 342
343 343 div.rst-block pre,
@@ -346,18 +346,18 b' div.rst-block code {'
346 346 }
347 347
348 348 div.rst-block code {
349 font-size: 12px !important;
350 background-color: ghostWhite !important;
351 color: #444 !important;
352 padding: 0 .2em !important;
353 border: 1px solid #dedede !important;
349 font-size: 12px;
350 background-color: ghostWhite;
351 color: #444;
352 padding: 0 .2em;
353 border: 1px solid #dedede;
354 354 }
355 355
356 356 div.rst-block pre code {
357 padding: 0 !important;
358 font-size: 12px !important;
359 background-color: #eee !important;
360 border: none !important;
357 padding: 0;
358 font-size: 12px;
359 background-color: #eee;
360 border: none;
361 361 }
362 362
363 363 div.rst-block pre {
@@ -56,7 +56,7 b' body {'
56 56 //--- LAYOUT ------------------//
57 57
58 58 .hidden{
59 display: none !important;
59 display: none;
60 60 }
61 61
62 62 .box{
@@ -120,7 +120,7 b' ul.simple-list{'
120 120 }
121 121
122 122 .wide-mode-wrapper {
123 max-width:4000px !important;
123 max-width:4000px;
124 124 }
125 125
126 126 .wrapper {
@@ -372,8 +372,8 b' ul.auth_plugins {'
372 372 }
373 373
374 374 .pr-mergeinfo {
375 min-width: 95% !important;
376 padding: 0 !important;
375 min-width: 95%;
376 padding: 0;
377 377 border: 0;
378 378 }
379 379 .pr-mergeinfo-copy {
@@ -381,8 +381,8 b' ul.auth_plugins {'
381 381 }
382 382
383 383 .pr-pullinfo {
384 min-width: 95% !important;
385 padding: 0 !important;
384 min-width: 95%;
385 padding: 0;
386 386 border: 0;
387 387 }
388 388 .pr-pullinfo-copy {
@@ -1218,7 +1218,7 b' table.integrations {'
1218 1218 }
1219 1219
1220 1220 .autocomplete-suggestions {
1221 width: auto !important; // overrides autocomplete.js
1221 width: auto; // overrides autocomplete.js
1222 1222 margin: 0;
1223 1223 border: @border-thickness solid @rcblue;
1224 1224 border-radius: @border-radius;
@@ -1469,7 +1469,7 b' table.integrations {'
1469 1469 width: 16px;
1470 1470 margin-bottom: 10px;
1471 1471 padding: 0;
1472 color: black !important;
1472 color: black;
1473 1473 cursor: pointer;
1474 1474 }
1475 1475
@@ -355,7 +355,7 b''
355 355 cursor: pointer;
356 356
357 357 div {
358 overflow: visible !important;
358 overflow: visible;
359 359 }
360 360
361 361 &.sorting {
@@ -426,7 +426,7 b''
426 426 // Header Repository Switcher
427 427 // Select2 Dropdown
428 428 #select2-drop.select2-drop.repo-switcher-dropdown {
429 width: auto !important;
429 width: auto;
430 430 margin-top: 5px;
431 431 padding: 1em 0;
432 432 text-align: left;
@@ -685,8 +685,8 b' ul#context-pages {'
685 685 }
686 686
687 687 .notice-box {
688 display:block !important;
689 padding: 9px 0 !important;
688 display:block;
689 padding: 9px 0;
690 690 }
691 691
692 692 .menulabel-notice {
@@ -138,12 +138,12 b''
138 138
139 139 //--- ICONS STYLING ------------------//
140 140
141 .icon-git { color: @color4 !important; }
142 .icon-hg { color: @color8 !important; }
143 .icon-svn { color: @color1 !important; }
144 .icon-git-inv { color: @color4 !important; }
145 .icon-hg-inv { color: @color8 !important; }
146 .icon-svn-inv { color: @color1 !important; }
141 .icon-git { color: @color4; }
142 .icon-hg { color: @color8; }
143 .icon-svn { color: @color1; }
144 .icon-git-inv { color: @color4; }
145 .icon-hg-inv { color: @color8; }
146 .icon-svn-inv { color: @color1; }
147 147 .icon-repo-lock { color: #FF0000; }
148 148 .icon-repo-unlock { color: #FF0000; }
149 149
@@ -12,45 +12,45 b' div.readme_box h3,'
12 12 div.readme_box h4,
13 13 div.readme_box h5,
14 14 div.readme_box h6 {
15 border-bottom: none !important;
16 padding: 0 !important;
17 overflow: visible !important;
15 border-bottom: none;
16 padding: 0;
17 overflow: visible;
18 18 }
19 19
20 20 div.readme_box h1 {
21 21 font-size: 32px;
22 margin: 15px 0 15px 0 !important;
23 padding-bottom: 5px !important;
22 margin: 15px 0 15px 0;
23 padding-bottom: 5px;
24 24 }
25 25
26 26 div.readme_box h2 {
27 font-size: 24px !important;
28 margin: 34px 0 10px 0 !important;
29 border-top: 3px #e6e5e5 solid !important;
30 padding-top: 15px !important;
31 padding-bottom: 8px !important;
27 font-size: 24px;
28 margin: 34px 0 10px 0;
29 border-top: 3px #e6e5e5 solid;
30 padding-top: 15px;
31 padding-bottom: 8px;
32 32 }
33 33
34 34 div.readme_box h3 {
35 font-size: 18px !important;
36 margin: 30px 0 8px 0 !important;
37 padding-bottom: 2px !important;
35 font-size: 18px;
36 margin: 30px 0 8px 0;
37 padding-bottom: 2px;
38 38 }
39 39
40 40 div.readme_box h4 {
41 font-size: 13px !important;
42 margin: 18px 0 3px 0 !important;
41 font-size: 13px;
42 margin: 18px 0 3px 0;
43 43 }
44 44
45 45 div.readme_box h5 {
46 font-size: 12px !important;
47 margin: 15px 0 3px 0 !important;
46 font-size: 12px;
47 margin: 15px 0 3px 0;
48 48 }
49 49
50 50 div.readme_box h6 {
51 51 font-size: 12px;
52 52 color: #777777;
53 margin: 15px 0 3px 0 !important;
53 margin: 15px 0 3px 0;
54 54 }
55 55
56 56 div.readme_box hr {
@@ -68,22 +68,22 b' div.readme_box blockquote,'
68 68 div.readme_box dl,
69 69 div.readme_box li,
70 70 div.readme_box table {
71 margin: 3px 0px 13px 0px !important;
72 color: #424242 !important;
73 font-size: 13px !important;
74 font-family: "Helvetica" !important;
75 font-weight: normal !important;
76 overflow: visible !important;
77 line-height: 140% !important;
71 margin: 3px 0px 13px 0px;
72 color: #424242;
73 font-size: 13px;
74 font-family: "Helvetica";
75 font-weight: normal ;
76 overflow: visible;
77 line-height: 140%;
78 78 }
79 79
80 80 div.readme_box pre {
81 margin: 3px 0px 13px 0px !important;
81 margin: 3px 0px 13px 0px;
82 82 padding: .5em;
83 color: #424242 !important;
84 font-size: 13px !important;
85 overflow: visible !important;
86 line-height: 140% !important;
83 color: #424242;
84 font-size: 13px;
85 overflow: visible;
86 line-height: 140%;
87 87 background-color: @grey7;
88 88 }
89 89
@@ -100,26 +100,26 b' div.readme_box strong {'
100 100
101 101 div.readme_box ul,
102 102 div.readme_box ol {
103 padding-left: 30px !important;
104 margin-top: 0px !important;
105 margin-bottom: 18px !important;
103 padding-left: 30px;
104 margin-top: 0px;
105 margin-bottom: 18px;
106 106 }
107 107
108 108 div.readme_box ul li,
109 109 div.readme_box ol li {
110 list-style: bullet !important;
111 margin: 6px !important;
112 padding: 0 !important;
110 list-style: bullet;
111 margin: 6px;
112 padding: 0;
113 113 }
114 114
115 115 div.readme_box ol li {
116 list-style: decimal !important;
116 list-style: decimal;
117 117 }
118 118
119 119 /*
120 120 div.readme_box a,
121 121 div.readme_box a:visited {
122 color: #4183C4 !important;
122 color: #4183C4;
123 123 background-color: inherit;
124 124 text-decoration: none;
125 125 }
@@ -181,43 +181,43 b' div.rst-block h3,'
181 181 div.rst-block h4,
182 182 div.rst-block h5,
183 183 div.rst-block h6 {
184 border-bottom: 0 !important;
185 margin: 0 !important;
186 padding: 0 !important;
187 line-height: 1.5em !important;
184 border-bottom: 0;
185 margin: 0;
186 padding: 0;
187 line-height: 1.5em;
188 188 }
189 189
190 190
191 191 div.rst-block h1:first-child {
192 padding-top: .25em !important;
192 padding-top: .25em;
193 193 }
194 194
195 195 div.rst-block h2,
196 196 div.rst-block h3 {
197 margin: 1em 0 !important;
197 margin: 1em 0;
198 198 }
199 199
200 200 div.rst-block h2 {
201 margin-top: 1.5em !important;
202 border-top: 4px solid #e0e0e0 !important;
203 padding-top: .5em !important;
201 margin-top: 1.5em;
202 border-top: 4px solid #e0e0e0;
203 padding-top: .5em;
204 204 }
205 205
206 206 div.rst-block p {
207 color: black !important;
208 margin: 1em 0 !important;
209 line-height: 1.5em !important;
207 color: black;
208 margin: 1em 0;
209 line-height: 1.5em;
210 210 }
211 211
212 212 div.rst-block ul {
213 list-style: disc !important;
214 margin: 1em 0 1em 2em !important;
213 list-style: disc;
214 margin: 1em 0 1em 2em;
215 215 clear: both;
216 216 }
217 217
218 218 div.rst-block ol {
219 219 list-style: decimal;
220 margin: 1em 0 1em 2em !important;
220 margin: 1em 0 1em 2em;
221 221 }
222 222
223 223 div.rst-block pre,
@@ -226,18 +226,18 b' div.rst-block code {'
226 226 }
227 227
228 228 div.rst-block code {
229 font-size: 12px !important;
230 background-color: ghostWhite !important;
231 color: #444 !important;
232 padding: 0 .2em !important;
233 border: 1px solid #dedede !important;
229 font-size: 12px;
230 background-color: ghostWhite;
231 color: #444;
232 padding: 0 .2em;
233 border: 1px solid #dedede;
234 234 }
235 235
236 236 div.rst-block pre code {
237 padding: 0 !important;
238 font-size: 12px !important;
239 background-color: #eee !important;
240 border: none !important;
237 padding: 0;
238 font-size: 12px;
239 background-color: #eee;
240 border: none;
241 241 }
242 242
243 243 div.rst-block pre {
@@ -249,4 +249,4 b' div.rst-block pre {'
249 249 font-size: 12px;
250 250 color: #444;
251 251 background-color: @grey7;
252 } No newline at end of file
252 }
@@ -31,7 +31,7 b''
31 31 html[dir="rtl"] .select2-container .select2-choice .select2-arrow { left: 0; right: auto; border-left: none; border-right: @border-thickness solid @grey5; border-radius: @border-radius 0 0 @border-radius; }
32 32 html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {background-position: 2px 1px;}
33 33 .select2-search { display: inline-block; width: 100%; min-height: 26px; margin: 0; padding-left: 4px; padding-right: 4px; position: relative; z-index: 1000; white-space: nowrap; }
34 .select2-search input { width: 100%; height: auto !important; min-height: 26px; padding: 4px 20px 4px 5px; margin: 0; outline: 0; }
34 .select2-search input { width: 100%; height: auto; min-height: 26px; padding: 4px 20px 4px 5px; margin: 0; outline: 0; }
35 35 html[dir="rtl"] .select2-search input { padding: 4px 5px 4px 20px; background: #fff url('../images/select2.png') no-repeat -37px -22px; }
36 36 .select2-drop.select2-drop-above .select2-search input {margin-top: 4px;}
37 37 .select2-dropdown-open .select2-choice .select2-arrow { background: transparent; border-left: none; filter: none; }
@@ -54,9 +54,9 b' html[dir="rtl"] .select2-results { paddi'
54 54 .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover{background-position:right -11px}
55 55 .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close{background-position:right -11px}
56 56 .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close{display:none;background:none}
57 .select2-offscreen,.select2-offscreen:focus{clip:rect(0 0 0 0) !important;width:1px !important;height:1px !important;
58 border:0 !important;margin:0 !important;padding:0 !important;overflow:hidden !important;
59 position: absolute !important;outline:0 !important;left:0 !important;top:0 !important}
57 .select2-offscreen,.select2-offscreen:focus{clip:rect(0 0 0 0);width:1px;height:1px;
58 border:0;margin:0;padding:0;overflow:hidden;
59 position: absolute;outline:0;left:0;top:0}
60 60 .select2-display-none,
61 61 .select2-search-hidden {display:none}
62 62 .select2-search input { border-color: @rclightblue; }
@@ -138,7 +138,7 b' select.select2{height:28px;visibility:hi'
138 138
139 139 .drop-menu {
140 140 .drop-menu-base;
141 width: auto !important;
141 width: auto;
142 142 }
143 143
144 144 .drop-menu-no-width {
@@ -49,7 +49,7 b' table.dataTable {'
49 49 }
50 50
51 51 &.truncate-wrap {
52 white-space: nowrap !important;
52 white-space: nowrap;
53 53 }
54 54
55 55 pre {
@@ -261,7 +261,7 b' table.dataTable {'
261 261 // for truncated text
262 262 // used inside of table cells and in code block headers
263 263 .truncate-wrap {
264 white-space: nowrap !important;
264 white-space: nowrap;
265 265
266 266 //truncated text
267 267 .truncate {
General Comments 4
Under Review
author

Auto status change to "Under Review"

Rejected

Hi !

First thanks for your contributin. We really appriciate it.
Saddly after doing some checks this breaks a lot of things. We know having !important tags is bad, this is why we're going to remove them, but this has
to be done by our UI team, after checking 100s of UI elements styling.

I'm going to reject that, if you see any specific !important tags to be removed let us know in tickets on issues.rhodecode.com.

Rejected

Closing with status change > Rejected.