publishable items emphasized in history list
[fnpeditor.git] / src / editor / modules / documentHistory / documentHistory.less
1 .rng-module-documentHistory {
2     
3     .item {
4         padding: 5px 5px;
5         margin: 0 0 15px 0;
6         cursor: pointer;
7         
8         .version {
9             float: left;
10             width: 30px;
11             font-weight: bold;
12         }
13         
14         .date, .author, .description, .publishable {
15             margin: 5px 10px 0 40px;
16         }
17         
18         .description, .publishable {
19             font-size: .9em;
20         }
21     }
22
23     .item.publishable {
24         font-weight: bold;
25     }
26
27     .item.highlighted {
28         background: #ffec63;
29     }
30     
31     .item.disabled {
32         cursor: default;
33     }
34     
35     .toolbar {
36         margin: 0 0 15px 0;
37         white-space:nowrap; 
38         word-spacing:0;
39         min-height: 22px;
40         button {
41             margin-right: 10px;
42         }
43     }
44     
45     .rng-module-documentHistory-itemsList {
46         overflow-y: scroll;
47         position: absolute;
48         top: 30px;
49         bottom: 0;
50         left: 0;
51         right: 0;
52         &::-webkit-scrollbar {
53             .rng-mixin-scrollbar;
54         }
55         &::-webkit-scrollbar-track {
56             .rng-mixin-scrollbar-track;
57         }
58         &::-webkit-scrollbar-thumb {
59             .rng-mixin-scrollbar-thumb;
60         }
61         &::-webkit-scrollbar-thumb:window-inactive {
62             .rng-mixin-scrollbar-thumb-window-inactive;
63         }
64     }
65 }
66