Bug 23197: Add more batch operation options to SQL report results
[koha-equinox.git] / koha-tmpl / intranet-tmpl / prog / css / reports.css
1 #sql {
2     height: 9em;
3     width: 90%;
4 }
5
6 #update_sql .modal-dialog {
7     width: 80%;
8 }
9
10 #sql_output {
11     border: 1px solid #ddd;
12     margin-bottom: .5em;
13     padding: .5em;
14 }
15
16 ins {
17     background-color: #e6ffe6;
18 }
19
20 del {
21     background-color: #ffe6e6;
22 }
23
24 #col1,
25 #col2 {
26     float: left;
27     width: 45%;
28 }
29
30 #col1 ins,
31 #col2 del {
32     display: none;
33 }
34
35 .show_sql {
36     font-family: monospace;
37 }
38
39 .filter {
40     background-color: #EBF3FF;
41     border-radius: 5px;
42     display: inline-block;
43     font-size: 85%;
44     margin: 3px;
45     padding: 0 1em;
46     white-space: nowrap;
47 }
48
49 .filter span,
50 .filter a {
51     padding: .5em 0;
52 }
53
54 .filter span {
55     border-right: 1px solid #A4BEDD;
56     display: inline-block;
57     margin-right: .5em;
58     padding-right: .5em;
59 }
60
61 .clear_filter {
62     display: inline-block;
63     font-weight: bold;
64     margin-left: .5em;
65     padding-left: 1em;
66 }
67
68 .clear_filter i {
69     color: #C00;
70 }
71
72 fieldset.rows label,
73 fieldset.rows span.label {
74     width: 12em;
75 }
76
77 fieldset.rows .column_config_row {
78     display: flex;
79     flex-wrap: wrap;
80     justify-content: flex-start;
81 }
82
83 fieldset.rows .chart-column-conf {
84     padding: .7em;
85     width: auto;
86 }
87
88 fieldset.rows .chart-column-conf label {
89     display: block;
90     float: none;
91     margin: .4em 0;
92     text-align: left;
93     width: auto;
94 }
95
96 #makechart select {
97     max-width: 12em;
98 }