| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* #reinstall | |
| 2 ******************************************************************************/ | |
| 3 | |
| 4 #reinstall | |
| 5 { | |
| 6 padding: 1em 0; | |
| 7 } | |
| 8 | |
| 9 #reinstall .button | |
| 10 { | |
| 11 margin: 1em 0; | |
|
ire
2017/12/07 12:36:27
I don't think this is doing anything
juliandoucette
2017/12/08 16:49:52
It adds space above/below the button on mobile. It
ire
2017/12/11 15:53:48
Acknowledged.
| |
| 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 } | |
| 63 | |
| 64 #reason-error | |
| 65 { | |
| 66 display: none; | |
| 67 color: #c70d2c; | |
| 68 } | |
| 69 | |
| 70 .error #reason-error | |
| 71 { | |
| 72 display: block; | |
| 73 } | |
| 74 | |
| 75 .hidden | |
| 76 { | |
| 77 display: none; | |
| 78 } | |
| OLD | NEW |