comparison sat_templates/default/static/chat_select.css @ 147:33c7ce833d3f

install: setup.py fix + moved "default" dir in a "sat_templates" dir: the merge request at https://bugs.goffi.org/mr/view/3 was a good basis, but not fully working ("default" dir was removed), this patch fixes it, and do some improvments: - moved "default" in "sat_templates" dir, which correspond to the python module, so it can be found easily from python - added VERSION, and mercurial hash detection, in the same way as for Cagou and backend - slight modification of classifiers - replaces tabs coming from MR by spaces
author Goffi <goffi@goffi.org>
date Sat, 02 Jun 2018 17:25:43 +0200
parents default/static/chat_select.css@4f27ce980ced
children
comparison
equal deleted inserted replaced
146:7dc00829c32f 147:33c7ce833d3f
1 #main_area {
2 overflow: auto;
3 }
4
5 .rooms_list {
6 list-style: none;
7 display: grid;
8 text-align: center;
9 padding: 0;
10 }
11
12 .rooms_list a {
13 text-decoration: none;
14 color: inherit;
15 font-variant: small-caps;
16 font-weight: bold;
17 }
18
19 .rooms_list li {
20 margin-top: 1em;
21 }
22
23 .rooms_list li:first-child {
24 margin-top: 0;
25 }
26
27 .rooms_list li:hover {
28 background-color: #efefef;
29 }
30
31 @media (min-width: 600px) {
32 .rooms_list {
33 grid-template-columns: 1fr 1fr 1fr;
34 }
35
36 .rooms_list li {
37 margin-top: 0;
38 }
39 }