blob: 1a81c76719216c87af0355ebf88f03a886680721 [file] [log] [blame]
Adrià956b32a2015-01-01 20:03:07 +01001/*@import url("widgets.css");*/
Adrià6ae49e72014-11-09 22:21:19 +01002
avm99963292d4f22021-05-18 11:39:04 +02003html {
4 direction: __MSG_@@bidi_dir__;
5}
6
Adrià6ae49e72014-11-09 22:21:19 +01007body {
avm999635a57c412020-12-27 00:26:45 +01008 padding: 10px;
9 font-family: "Roboto", "Arial", sans-serif !important;
10 background-color: #BBDEFB;
11 background-repeat: repeat;
12 background-position: left top;
13 font-size: 90%;
14 cursor: default;
15 min-width: 400px;
Adrià6ae49e72014-11-09 22:21:19 +010016}
avm999635a57c412020-12-27 00:26:45 +010017
Adrià6ae49e72014-11-09 22:21:19 +010018h1 {
avm999635a57c412020-12-27 00:26:45 +010019 text-align: center;
20 font-size: 30px;
Adrià6ae49e72014-11-09 22:21:19 +010021}
avm999635a57c412020-12-27 00:26:45 +010022
Adrià6ae49e72014-11-09 22:21:19 +010023h2 {
avm999635a57c412020-12-27 00:26:45 +010024 font-size: 20px;
Adrià6ae49e72014-11-09 22:21:19 +010025}
avm999635a57c412020-12-27 00:26:45 +010026
Adrià6ae49e72014-11-09 22:21:19 +010027#languages_container {
avm999635a57c412020-12-27 00:26:45 +010028 width: 300px;
avm99963f65e9bf2020-12-29 12:57:16 +010029 height: 250px;
avm999635a57c412020-12-27 00:26:45 +010030 border: 1px solid #ccc;
31 background-color: #E3F2FD;
32 overflow: auto;
Adrià6ae49e72014-11-09 22:21:19 +010033}
avm999635a57c412020-12-27 00:26:45 +010034
Adrià6ae49e72014-11-09 22:21:19 +010035#languages {
avm999635a57c412020-12-27 00:26:45 +010036 list-style: none;
37 margin: 0;
38 padding: 0;
Adrià6ae49e72014-11-09 22:21:19 +010039}
avm999635a57c412020-12-27 00:26:45 +010040
Adrià6ae49e72014-11-09 22:21:19 +010041#languages li {
avm999635a57c412020-12-27 00:26:45 +010042 padding: 15px;
43 border-bottom: 1px dashed #ddd;
44 background-color: #EEF7FD;
45 cursor: move;
46 -webkit-user-select: none;
Adrià6ae49e72014-11-09 22:21:19 +010047}
avm999635a57c412020-12-27 00:26:45 +010048
Adrià6ae49e72014-11-09 22:21:19 +010049#languages li.sortable-ghost {
avm999635a57c412020-12-27 00:26:45 +010050 background-color: #E3F2FD;
Adrià6ae49e72014-11-09 22:21:19 +010051}
avm999635a57c412020-12-27 00:26:45 +010052
Adrià6ae49e72014-11-09 22:21:19 +010053#languages li .delete {
avm999635a57c412020-12-27 00:26:45 +010054 font-size: 14px;
avm99963292d4f22021-05-18 11:39:04 +020055 float: __MSG_@@bidi_end_edge__;
avm999635a57c412020-12-27 00:26:45 +010056 cursor: pointer;
57 color: red;
Adrià6ae49e72014-11-09 22:21:19 +010058}
avm999635a57c412020-12-27 00:26:45 +010059
Adrià6ae49e72014-11-09 22:21:19 +010060#languages_footer {
avm999635a57c412020-12-27 00:26:45 +010061 width: 300px;
62 height: 35px;
63 background-color: #fff;
64 border: 1px solid #ccc;
65 border-top: 0;
Adrià6ae49e72014-11-09 22:21:19 +010066}
avm999635a57c412020-12-27 00:26:45 +010067
68button,
69input,
70select,
71option {
72 font-size: 13px !important;
Adrià6ae49e72014-11-09 22:21:19 +010073}
avm999635a57c412020-12-27 00:26:45 +010074
Adrià6ae49e72014-11-09 22:21:19 +010075#languages_add {
avm99963292d4f22021-05-18 11:39:04 +020076 margin-__MSG_@@bidi_start_edge__: 4px;
avm999635a57c412020-12-27 00:26:45 +010077 margin-top: 4px;
Adrià6ae49e72014-11-09 22:21:19 +010078}
avm999635a57c412020-12-27 00:26:45 +010079
Adrià6ae49e72014-11-09 22:21:19 +010080#save {
avm999635a57c412020-12-27 00:26:45 +010081 display: block;
82 margin: 18px auto;
Adrià6ae49e72014-11-09 22:21:19 +010083}
84
85/* Dialog */
Adriàe96a76c2014-12-06 14:59:17 +010086dialog#languages_add_dialog {
avm999635a57c412020-12-27 00:26:45 +010087 position: fixed;
88 top: 50%;
89 left: 50%;
90 margin-left: -216px;
91 margin-top: -91px;
92 height: 150px;
93 width: 400px;
94 border: 1px solid rgba(0, 0, 0, 0.3);
95 border-radius: 6px;
96 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
Adrià6ae49e72014-11-09 22:21:19 +010097}
98
99dialog h3 {
avm999635a57c412020-12-27 00:26:45 +0100100 margin-bottom: 10px;
Adrià6ae49e72014-11-09 22:21:19 +0100101}
102
103dialog #language_label {
avm999635a57c412020-12-27 00:26:45 +0100104 font-size: 12px;
Adrià6ae49e72014-11-09 22:21:19 +0100105}
106
107dialog select {
avm999635a57c412020-12-27 00:26:45 +0100108 width: 100%;
Adrià6ae49e72014-11-09 22:21:19 +0100109}
110
avm999639bbb3a42020-12-29 03:29:44 +0100111dialog#languages_add_dialog .action_buttons {
avm999635a57c412020-12-27 00:26:45 +0100112 margin-top: 10px;
avm99963292d4f22021-05-18 11:39:04 +0200113 float: __MSG_@@bidi_end_edge__;
Adrià6ae49e72014-11-09 22:21:19 +0100114}
115
116dialog::backdrop {
avm999635a57c412020-12-27 00:26:45 +0100117 position: fixed;
118 top: 0;
119 left: 0;
120 right: 0;
121 bottom: 0;
122 background-color: rgba(0, 0, 0, 0.5);
Adriàe96a76c2014-12-06 14:59:17 +0100123}
124
125/* Credits */
126#credits_container {
avm999635a57c412020-12-27 00:26:45 +0100127 position: absolute;
128 top: 0px;
avm99963292d4f22021-05-18 11:39:04 +0200129 __MSG_@@bidi_end_edge__: 50px;
avm999635a57c412020-12-27 00:26:45 +0100130 background: rgb(195, 235, 204);
131 border: solid 1px rgb(139, 139, 139);
132 border-top: 0;
133 border-radius: 0px 0px 5px 5px;
Adriàe96a76c2014-12-06 14:59:17 +0100134}
135
136#credits_container a {
avm999635a57c412020-12-27 00:26:45 +0100137 color: green !important;
138 margin: 0 5px;
Adriàe96a76c2014-12-06 14:59:17 +0100139}
140
141dialog#credits_dialog {
avm999635a57c412020-12-27 00:26:45 +0100142 position: fixed;
143 top: 50%;
144 left: 50%;
145 margin-left: -216px;
146 margin-top: -231px;
avm999639bbb3a42020-12-29 03:29:44 +0100147 padding: 0;
avm999635a57c412020-12-27 00:26:45 +0100148 height: 430px;
149 width: 400px;
150 border: 1px solid rgba(0, 0, 0, 0.3);
151 border-radius: 6px;
152 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
Adriàe96a76c2014-12-06 14:59:17 +0100153}
154
avm999639bbb3a42020-12-29 03:29:44 +0100155dialog#credits_dialog[open] {
156 display: flex;
157 flex-direction: column;
158}
159
160dialog#credits_dialog .scrollable {
161 padding: 1em;
162 overflow-y: auto;
163}
164
Adriàe96a76c2014-12-06 14:59:17 +0100165dialog#credits_dialog .content_area h4 {
avm999635a57c412020-12-27 00:26:45 +0100166 margin-bottom: 0px;
Adriàe96a76c2014-12-06 14:59:17 +0100167}
168
avm999639bbb3a42020-12-29 03:29:44 +0100169dialog#credits_dialog .entry {
170 position: relative;
171}
172
173dialog#credits_dialog .entry a.homepage {
avm999635a57c412020-12-27 00:26:45 +0100174 position: absolute;
avm99963292d4f22021-05-18 11:39:04 +0200175 __MSG_@@bidi_end_edge__: 16px;
avm999635a57c412020-12-27 00:26:45 +0100176 font-size: 14px;
Adriàe96a76c2014-12-06 14:59:17 +0100177}
178
avm999639bbb3a42020-12-29 03:29:44 +0100179dialog#credits_dialog p,
180dialog#credits_dialog span {
avm999635a57c412020-12-27 00:26:45 +0100181 font-size: 14px;
Adriàe96a76c2014-12-06 14:59:17 +0100182}
183
avm999639bbb3a42020-12-29 03:29:44 +0100184dialog#credits_dialog p.author {
avm999635a57c412020-12-27 00:26:45 +0100185 margin-top: 7px;
Adrià956b32a2015-01-01 20:03:07 +0100186}
187
avm999639bbb3a42020-12-29 03:29:44 +0100188dialog#credits_dialog #translators .name {
189 font-weight: bold;
190}
191
avm99963f65e9bf2020-12-29 12:57:16 +0100192dialog#credits_dialog .action_buttons {
avm999639bbb3a42020-12-29 03:29:44 +0100193 border-top: 1px solid #ccc;
194 padding: 1em;
avm99963292d4f22021-05-18 11:39:04 +0200195 text-align: __MSG_@@bidi_end_edge__;
avm999639bbb3a42020-12-29 03:29:44 +0100196}
197
avm9996318dc3ef2021-01-10 18:49:18 +0100198dialog#credits_dialog .createdby {
199 font-style: italic;
200}
201
Adrià956b32a2015-01-01 20:03:07 +0100202#otheroptions p {
avm999635a57c412020-12-27 00:26:45 +0100203 margin-top: 0;
204 margin-bottom: 0;
avm999634a2a5d52016-06-04 16:17:29 +0200205}