blob: cb94019db71119bdbd180cf1aa0eb71be69ef0bb [file] [log] [blame]
Tyler Scott3c17d5f2015-06-23 17:49:29 -06001html, body {
2 width: 100%;
3 height: 100%;
4 margin: 0;
5}
6
Tyler Scott3c17d5f2015-06-23 17:49:29 -06007.sidebar {
8 height: 100%;
9 max-height: 100%;
10 overflow: auto;
11}
Tyler Scottf08ab962015-06-30 16:31:29 -060012
Tyler Scotta1ac69d2015-07-02 17:42:03 -060013.fail {
Tyler Scottf65b7102015-06-30 18:40:14 -060014 color: red;
15}
16
Tyler Scotta1ac69d2015-07-02 17:42:03 -060017.sucess {
Tyler Scottf65b7102015-06-30 18:40:14 -060018 color: green;
Tyler Scottf08ab962015-06-30 16:31:29 -060019}
Tyler Scott7d076e22015-07-06 19:21:50 -060020
21.subnav {
22 display: none;
23 max-height: 500px;
24 overflow: auto;
25 margin-left: 15px;
26 border-left: gray 3px solid;
27}
Tyler Scotte815d3e2015-07-09 16:56:17 -060028
Tyler Scott93cae872015-07-21 14:58:23 -060029.autoComplete .list-group {
30 margin-bottom: 0;
31 border: none;
32}
33
Tyler Scotte815d3e2015-07-09 16:56:17 -060034#filters {
35 margin-bottom: 10px;
36 visibility: visible;
37 opacity: 1;
38 transition: visibility 1s ease-out, opacity 1s ease-out, margin-bottom 1s ease-out;
39}
40
41#filters .label {
42 /* display: none; */
43 font-size: inherit;
44 transition: background-color 1s,
45
46 border-color 2s;
Tyler Scott087aef72015-07-14 14:11:59 -060047 cursor: pointer;
Tyler Scotte815d3e2015-07-09 16:56:17 -060048}
49
Tyler Scotta1530052015-07-24 00:13:28 -060050#filters .label::after {
51 content: " \2716";
52}
53
Tyler Scotte815d3e2015-07-09 16:56:17 -060054#filters .label:hover {
55 /* font-size: 0; */
56 background-color: red;
57 border-color: red;
58}
59
60#filters .label:hover::before {
61 content: "Remove ";
62}
63
64#filters .label:hover::after {
65 content: "?";
66}
67
68#filters .label:not(:last-child) {
69 margin-right: 5px;
70}
71
72#filters:empty {
73 visibility: hidden;
74 opacity: 0;
75 margin-bottom: 0;
76}
77
78/* Magic filters text that won't get picked up in jquery.text */
79#filters:not(:empty)::before {
80 content: "Filters: ";
81}