Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Scripts/Styling/angular.treeview.css @ 13782

Last change on this file since 13782 was 13754, checked in by jlodewyc, 9 years ago

#2582 User management done, start resource calendar

File size: 1.1 KB
Line 
1div[data-angular-treeview] {
2  /* prevent user selection */
3  -moz-user-select: -moz-none;
4  -khtml-user-select: none;
5  -webkit-user-select: none;
6  -ms-user-select: none;
7  user-select: none;
8
9  /* default */
10  font-family: Tahoma;
11  font-size:13px;
12  color: #555;
13  text-decoration: none;
14}
15
16div[data-tree-model] ul {
17  margin: 0;
18  padding: 0;
19  list-style: none;
20  border: none;
21  overflow: hidden;
22}
23
24div[data-tree-model] li {
25  position: relative;
26  padding: 0 0 0 20px;
27  line-height: 20px;
28}
29
30div[data-tree-model] li .expanded {
31  padding: 1px 10px;
32  background-image: url("../img/folder.png");
33  background-repeat: no-repeat;
34}
35
36div[data-tree-model] li .collapsed {
37  padding: 1px 10px;
38  background-image: url("../img/folder-closed.png");
39  background-repeat: no-repeat;
40}
41
42div[data-tree-model] li .normal {
43  padding: 1px 10px;
44  background-image: url("../img/file.png");
45  background-repeat: no-repeat;
46}
47
48div[data-tree-model] li i, div[data-tree-model] li span {
49  cursor: pointer;
50}
51
52div[data-tree-model] li .selected {
53  background-color: #aaddff;
54  font-weight: bold;
55  padding: 1px 5px;
56}
Note: See TracBrowser for help on using the repository browser.