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