1/*
2Copyright (C) 2001-2020 OTRS AG, https://otrs.com/
3
4This software comes with ABSOLUTELY NO WARRANTY. For details, see
5the enclosed file COPYING for license information (GPL). If you
6did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
7*/
8
9/**
10 * @package     Skin "Default"
11 * @section     SortedTree
12 */
13
14@media screen,projection,tv,handheld {
15
16.SortableList {
17    border: 1px solid #ddd;
18    padding: 10px 10px 3px 10px;
19    width: 80%;
20    background: #eee;
21}
22
23.SortableList li {
24    margin-bottom: 7px;
25}
26
27.SortableList li ul {
28    margin-left: 20px;
29    margin-top: 7px;
30}
31
32.SortableList li span {
33    background-color: #ddd;
34    font-size: 11px;
35    line-height: 12px;
36    margin-bottom: 5px;
37    margin-right: 5px;
38    padding: 5px 25px 5px 15px;
39    position: relative;
40}
41
42.SortableList li span.Icon {
43    padding: 0px;
44    position: absolute;
45    cursor: pointer;
46    height: 25px;
47    width: 21px;
48    right: -26px;
49    top: -1px;
50    display: none;
51    background: none;
52    color: #000;
53}
54
55.SortableList li span:hover > span.Icon {
56    display: block;
57}
58
59.SortableList li span input {
60    border: 0px;
61    font-size: 11px;
62    background-color: #ddd;
63    box-shadow: none;
64    color: #777;
65}
66
67.SortableList li span input:focus {
68    color: #000;
69}
70
71.SortableList li span em {
72    font-style: normal;
73}
74
75.SortableList li span strong {
76    background-color: #bbb;
77    color: #eee;
78    cursor: pointer;
79    display: block;
80    font-size: 11px;
81    font-weight: normal;
82    padding: 4px 6px 6px;
83    position: absolute;
84    right: 0px;
85    top: 0px;
86}
87
88.SortableList li span i {
89    color: #bbb;
90    font-size: 14px;
91    position: absolute;
92    left: 6px;
93    top: 5px;
94    cursor: pointer;
95    width: 10px;
96    display: block;
97}
98
99.SortableList li span:hover i {
100    color: #777;
101}
102
103div.AddElement {
104    background: #ddd;
105    border: 1px solid #ddd;
106    font-size: 11px;
107    padding: 3px 10px;
108    width: 80%;
109    margin-bottom: 10px;
110}
111
112.SortableList .ElementTemplate {
113    display: none;
114}
115
116} /* end @media */
117