blob: a68c7ddc0fe37bb07a448e75fdbcb3a747e2be11 [file] [log] [blame]
Adrià Vilanova Martínez5af86512023-12-02 20:44:16 +01001/*
2 * hores
3 * Copyright (c) 2023 Adrià Vilanova Martínez
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Affero General Public License as
7 * published by the Free Software Foundation, either version 3 of the
8 * License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public
16 * License along with this program.
17 * If not, see http://www.gnu.org/licenses/.
18 */
Copybara botbe50d492023-11-30 00:16:42 +010019.incidents-wrapper {
20 display: inline-block;
21}
22
23.incidents-wrapper--scrollable {
24 max-height: 400px;
25 overflow-y: auto;
26}
27
28.incidents {
29 border: solid 1px rgba(0,0,0,.12);
30 border-collapse: collapse;
31 white-space: nowrap;
32}
33
34.incidents tr.artificial-height {
35 height: 32px;
36}
37
38.incidents tr:not(:last-child) {
39 border-bottom: solid 1px rgba(0,0,0,.24);
40}
41
42.incidents td, .incidents th {
43 padding: 1px 8px;
44}
45
46.incidents .centered {
47 text-align: center;
48}
49
50.incidents .icon-cell {
51 user-select: none;
52}
53
54.incidents .has-checkbox {
55 padding-left: 14px;
56 padding-right: 0;
57}
58
59.incidents .has-checkbox .mdl-checkbox__ripple-container {
60 height: 34px!important;
61 width: 34px!important;
62 top: -5px!important;
63 left: -9px!important;
64}
65
66.incidents .icon-cell .material-icons {
67 cursor: pointer;
68}
69
70.incidents .material-icons {
71 vertical-align: middle;
72}
73
74.incidents .verification-actions {
75 display: inline-block;
76}
77
78.incidents .more {
79 cursor: pointer;
80}
81
82.incidents-wrapper .mdl-menu__container {
83 top: 0;
84 right: 0;
85}
86
87.notvisible {
88 display: none;
89}
90
91.incidents tr.line-through td.can-strike {
92 text-decoration: line-through;
93}