Adrià | 956b32a | 2015-01-01 20:03:07 +0100 | [diff] [blame] | 1 | /*@import url("widgets.css");*/ |
Adrià | 6ae49e7 | 2014-11-09 22:21:19 +0100 | [diff] [blame] | 2 | |
| 3 | body { |
| 4 | padding: 10px; |
| 5 | font-family: "Roboto", "Arial", sans-serif!important; |
| 6 | background-color: #BBDEFB; |
| 7 | background-repeat: repeat; |
| 8 | background-position: left top; |
Adrià | 956b32a | 2015-01-01 20:03:07 +0100 | [diff] [blame] | 9 | font-size: 90%; |
Adrià | 6ae49e7 | 2014-11-09 22:21:19 +0100 | [diff] [blame] | 10 | cursor: default; |
Adrià | 956b32a | 2015-01-01 20:03:07 +0100 | [diff] [blame] | 11 | min-width: 400px; |
Adrià | 6ae49e7 | 2014-11-09 22:21:19 +0100 | [diff] [blame] | 12 | } |
| 13 | h1 { |
| 14 | text-align: center; |
| 15 | font-size: 30px; |
| 16 | } |
| 17 | h2 { |
| 18 | font-size: 20px; |
| 19 | } |
| 20 | #languages_container { |
| 21 | width: 300px; |
| 22 | height: 365px; |
| 23 | border: 1px solid #ccc; |
| 24 | background-color: #E3F2FD; |
Adrià | 0e4c5d5 | 2014-12-14 19:00:03 +0100 | [diff] [blame] | 25 | overflow: auto; |
Adrià | 6ae49e7 | 2014-11-09 22:21:19 +0100 | [diff] [blame] | 26 | } |
| 27 | #languages { |
| 28 | list-style: none; |
| 29 | margin: 0; |
| 30 | padding: 0; |
| 31 | } |
| 32 | #languages li { |
| 33 | padding: 15px; |
| 34 | border-bottom: 1px dashed #ddd; |
| 35 | background-color: #EEF7FD; |
| 36 | cursor: move; |
| 37 | -webkit-user-select: none; |
| 38 | } |
| 39 | #languages li.sortable-ghost { |
| 40 | background-color: #E3F2FD; |
| 41 | } |
| 42 | #languages li .delete { |
| 43 | font-size: 14px; |
| 44 | float: right; |
| 45 | cursor: pointer; |
| 46 | color: red; |
| 47 | } |
| 48 | #languages_footer { |
| 49 | width: 300px; |
| 50 | height: 35px; |
| 51 | background-color: #fff; |
| 52 | border: 1px solid #ccc; |
| 53 | border-top: 0; |
| 54 | } |
| 55 | button, input, select, option { |
| 56 | font-size: 13px!important; |
| 57 | } |
| 58 | #languages_add { |
| 59 | margin-left: 4px; |
| 60 | margin-top: 4px; |
| 61 | } |
| 62 | #save { |
| 63 | display: block; |
| 64 | margin: 18px auto; |
| 65 | } |
| 66 | |
| 67 | /* Dialog */ |
Adrià | e96a76c | 2014-12-06 14:59:17 +0100 | [diff] [blame] | 68 | dialog#languages_add_dialog { |
Adrià | 6ae49e7 | 2014-11-09 22:21:19 +0100 | [diff] [blame] | 69 | position: fixed; |
| 70 | top: 50%; |
| 71 | left: 50%; |
| 72 | margin-left: -216px; |
| 73 | margin-top: -91px; |
| 74 | height: 150px; |
| 75 | width: 400px; |
| 76 | border: 1px solid rgba(0, 0, 0, 0.3); |
| 77 | border-radius: 6px; |
| 78 | box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 79 | } |
| 80 | |
| 81 | dialog h3 { |
| 82 | margin-bottom: 10px; |
| 83 | } |
| 84 | |
| 85 | dialog #language_label { |
| 86 | font-size: 12px; |
| 87 | } |
| 88 | |
| 89 | dialog select { |
| 90 | width: 100%; |
| 91 | } |
| 92 | |
| 93 | dialog .action_buttons { |
| 94 | margin-top: 10px; |
| 95 | float: right; |
| 96 | } |
| 97 | |
| 98 | dialog::backdrop { |
| 99 | position: fixed; |
| 100 | top: 0; |
| 101 | left: 0; |
| 102 | right: 0; |
| 103 | bottom: 0; |
| 104 | background-color: rgba(0, 0, 0, 0.5); |
Adrià | e96a76c | 2014-12-06 14:59:17 +0100 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | /* Credits */ |
| 108 | #credits_container { |
| 109 | position: absolute; |
| 110 | top: 0px; |
| 111 | right: 50px; |
| 112 | background: rgb(195, 235, 204); |
| 113 | border: solid 1px rgb(139, 139, 139); |
| 114 | border-top: 0; |
| 115 | border-radius: 0px 0px 5px 5px; |
| 116 | } |
| 117 | |
| 118 | #credits_container a { |
| 119 | color: green!important; |
| 120 | margin: 0 5px; |
| 121 | } |
| 122 | |
| 123 | dialog#credits_dialog { |
| 124 | position: fixed; |
| 125 | top: 50%; |
| 126 | left: 50%; |
| 127 | margin-left: -216px; |
avm99963 | 4a2a5d5 | 2016-06-04 16:17:29 +0200 | [diff] [blame] | 128 | margin-top: -231px; |
| 129 | height: 430px; |
Adrià | e96a76c | 2014-12-06 14:59:17 +0100 | [diff] [blame] | 130 | width: 400px; |
| 131 | border: 1px solid rgba(0, 0, 0, 0.3); |
| 132 | border-radius: 6px; |
| 133 | box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 134 | } |
| 135 | |
| 136 | dialog#credits_dialog .content_area h4 { |
| 137 | margin-bottom: 0px; |
| 138 | } |
| 139 | |
| 140 | dialog#credits_dialog .content_area a.homepage { |
| 141 | position: absolute; |
| 142 | right: 16px; |
| 143 | font-size: 14px; |
| 144 | } |
| 145 | |
| 146 | dialog#credits_dialog .content_area p, dialog#credits_dialog .content_area span { |
| 147 | font-size: 14px; |
| 148 | } |
| 149 | |
| 150 | dialog#credits_dialog .content_area p.author { |
| 151 | margin-top: 7px; |
Adrià | 956b32a | 2015-01-01 20:03:07 +0100 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | #otheroptions p { |
| 155 | margin-top: 0; |
| 156 | margin-bottom: 0; |
avm99963 | 4a2a5d5 | 2016-06-04 16:17:29 +0200 | [diff] [blame] | 157 | } |