LEFT | RIGHT |
1 /* #reinstall | 1 /* #reinstall |
2 ******************************************************************************/ | 2 ******************************************************************************/ |
3 | 3 |
4 #reinstall | 4 #reinstall |
5 { | 5 { |
6 padding: 1em 0; | 6 padding: 1em 0; |
7 } | 7 } |
8 | 8 |
9 #reinstall .button | 9 #reinstall .button |
10 { | 10 { |
(...skipping 10 matching lines...) Expand all Loading... |
21 [dir="rtl"] #reinstall .button | 21 [dir="rtl"] #reinstall .button |
22 { | 22 { |
23 margin-right: 1.5em; | 23 margin-right: 1.5em; |
24 } | 24 } |
25 } | 25 } |
26 | 26 |
27 | 27 |
28 /* #uninstall-reasons | 28 /* #uninstall-reasons |
29 ******************************************************************************/ | 29 ******************************************************************************/ |
30 | 30 |
| 31 #uninstall-reasons ul |
| 32 { |
| 33 list-style-type: none; |
| 34 } |
| 35 |
| 36 #uninstall-reasons ul, |
31 #uninstall-reasons li | 37 #uninstall-reasons li |
32 { | 38 { |
| 39 padding-left: 0; |
33 margin-bottom: 0.5em; | 40 margin-bottom: 0.5em; |
| 41 } |
| 42 |
| 43 [dir="rtl"] #uninstall-reasons ul, |
| 44 [dir="rtl"] #uninstall-reasons li |
| 45 { |
| 46 padding-right: 0; |
34 } | 47 } |
35 | 48 |
36 #uninstall-reasons input[type="checkbox"] | 49 #uninstall-reasons input[type="checkbox"] |
37 { | 50 { |
38 margin-right: 0.5em; | 51 margin-right: 0.5em; |
39 } | 52 } |
40 | 53 |
41 [dir="rtl"] #uninstall-reasons input[type="checkbox"] | 54 [dir="rtl"] #uninstall-reasons input[type="checkbox"] |
42 { | 55 { |
43 margin-left: 0.5em; | 56 margin-left: 0.5em; |
44 } | 57 } |
45 | 58 |
46 #uninstall-reasons textarea | 59 #uninstall-reasons textarea |
47 { | 60 { |
48 margin-top: 0.5em; | 61 margin-top: 0.5em; |
| 62 width: 100%; |
| 63 max-width: 554px; |
49 } | 64 } |
50 | 65 |
51 #reason-error | 66 #reason-error |
52 { | 67 { |
53 display: none; | 68 display: none; |
54 color: #c70d2c; | 69 color: #c70d2c; |
55 } | 70 } |
56 | 71 |
57 .error #reason-error | 72 .error #reason-error |
58 { | 73 { |
59 display: block; | 74 display: block; |
60 } | 75 } |
61 | 76 |
62 .hidden | 77 .hidden |
63 { | 78 { |
64 display: none; | 79 display: none; |
65 } | 80 } |
LEFT | RIGHT |