86 lines
1.9 KiB
CSS
86 lines
1.9 KiB
CSS
/**
|
|
* Orthanc - A Lightweight, RESTful DICOM Store
|
|
* Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
|
|
* Department, University Hospital of Liege, Belgium
|
|
* Copyright (C) 2017-2023 Osimis S.A., Belgium
|
|
* Copyright (C) 2024-2025 Orthanc Team SRL, Belgium
|
|
* Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
|
|
*
|
|
* This program is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
**/
|
|
|
|
|
|
ul.tree ul {
|
|
margin-left: 36px;
|
|
}
|
|
|
|
#progress {
|
|
position: relative;
|
|
/*height: 2em; */
|
|
width: 100%;
|
|
background-color: grey;
|
|
height: 2.5em;
|
|
}
|
|
|
|
#progress .label {
|
|
z-index: 10;
|
|
position: absolute;
|
|
left:0;
|
|
top: 0;
|
|
width: 100%;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
text-shadow: none;
|
|
padding: .5em;
|
|
color: white;
|
|
}
|
|
|
|
#progress .bar {
|
|
z-index: 0;
|
|
position: absolute;
|
|
left:0;
|
|
top: 0;
|
|
height: 100%;
|
|
width: 0%;
|
|
background-color: green;
|
|
}
|
|
|
|
.ui-title a {
|
|
text-decoration: none;
|
|
color: white !important;
|
|
}
|
|
|
|
.switch-container .ui-slider-switch {
|
|
width: 100%;
|
|
}
|
|
|
|
.label {
|
|
display: inline-block;
|
|
background-color: gray;
|
|
margin: 5px;
|
|
padding: 5px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.label button {
|
|
background-color: transparent;
|
|
border: 0px;
|
|
cursor: pointer;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.label button:hover {
|
|
background-color: lightgray;
|
|
}
|