Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / sass / _lt-sidebar.scss @ 989de44a

History | View | Annotate | Download (1003 Bytes)

1
/* Table of Contents
2

    
3
  - lt-sidebar general styles
4
  - lt-sidebar list view
5
  - custom scrollbar styles (jscrollpane)
6

    
7
*/ 
8

    
9
/* lt-sidebar general styles ----------------------------------------------- */
10

    
11
.lt-sidebar {
12
	overflow:scroll;
13
	height:300px;
14
	font-size:emCalc(12px);
15

    
16
/* lt-sidebar list view ----------------------------------------------- */
17

    
18
	.items-list {
19
		padding:0;
20
	 li .img .snf-PC_fill {
21
		font-size: 54px;
22
	}
23
	}
24

    
25
	.items-list li .img,
26
	.items-list li .os {
27
		background-size:80%;
28
	}
29
	.items-list li .img .os {
30
		top:6px;
31
	}
32
	li:hover {
33
		background:lighten($primary-color,35%);
34
	}
35
	li.current {
36
		background:lighten($primary-color,30%);
37
		cursor: pointer;
38

    
39
	}
40

    
41
/* custom scrollbar styles (jscrollpane) ----------------------------------------------- */
42

    
43
	.jspDrag {
44
		background-color:$primary-color;
45
	}
46
	.jspVerticalBar {
47
		width:10px;
48
		right:4px;
49
	}
50
	.jspTrack {
51
		background:#fff;
52

    
53
		border:1px solid $primary-color;
54
		border-top:1px solid lighten($primary-color,20%);
55
	}
56

    
57

    
58
}
59

    
60