Mercurial > hg > orthanc
annotate OrthancServer/OrthancExplorer/explorer.css @ 5609:4690a0d2b01e find-refactoring
preliminary support of requestedTags
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 08 May 2024 18:28:36 +0200 |
parents | 48b8dae6dc77 |
children | f7adfb22e20e |
rev | line source |
---|---|
4124
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
1 /** |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
2 * Orthanc - A Lightweight, RESTful DICOM Store |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
4 * Department, University Hospital of Liege, Belgium |
5485
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5241
diff
changeset
|
5 * Copyright (C) 2017-2024 Osimis S.A., Belgium |
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5241
diff
changeset
|
6 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
4124
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
7 * |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
8 * This program is free software: you can redistribute it and/or |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
9 * modify it under the terms of the GNU General Public License as |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
10 * published by the Free Software Foundation, either version 3 of the |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
11 * License, or (at your option) any later version. |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
12 * |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
13 * This program is distributed in the hope that it will be useful, but |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
14 * WITHOUT ANY WARRANTY; without even the implied warranty of |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
16 * General Public License for more details. |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
17 * |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
18 * You should have received a copy of the GNU General Public License |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
20 **/ |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
21 |
28944db5318b
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
22 |
0 | 23 ul.tree ul { |
24 margin-left: 36px; | |
25 } | |
26 | |
27 #progress { | |
28 position: relative; | |
29 /*height: 2em; */ | |
30 width: 100%; | |
31 background-color: grey; | |
32 height: 2.5em; | |
33 } | |
34 | |
35 #progress .label { | |
36 z-index: 10; | |
37 position: absolute; | |
38 left:0; | |
39 top: 0; | |
40 width: 100%; | |
41 font-weight: bold; | |
42 text-align: center; | |
43 text-shadow: none; | |
44 padding: .5em; | |
45 color: white; | |
46 } | |
47 | |
48 #progress .bar { | |
49 z-index: 0; | |
50 position: absolute; | |
51 left:0; | |
52 top: 0; | |
53 height: 100%; | |
54 width: 0%; | |
55 background-color: green; | |
56 } | |
152
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
57
diff
changeset
|
57 |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
57
diff
changeset
|
58 .ui-title a { |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
57
diff
changeset
|
59 text-decoration: none; |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
57
diff
changeset
|
60 color: white !important; |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
57
diff
changeset
|
61 } |
274
f2286c741109
patient protection in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
62 |
f2286c741109
patient protection in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
63 .switch-container .ui-slider-switch { |
f2286c741109
patient protection in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
64 width: 100%; |
4704
f0038043fb97
removed OpenSSL license exception, as OpenSSL 3.0 was relicensed under Apache 2.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
65 } |
5241
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
66 |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
67 .label { |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
68 display: inline-block; |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
69 background-color: gray; |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
70 margin: 5px; |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
71 padding: 5px; |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
72 border-radius: 10px; |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
73 } |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
74 |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
75 .label button { |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
76 background-color: transparent; |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
77 border: 0px; |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
78 cursor: pointer; |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
79 border-radius: 10px; |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
80 } |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
81 |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
82 .label button:hover { |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
83 background-color: lightgray; |
efaeec259623
added labels at the study level in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
84 } |