Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / sass / _forms.scss @ 05689a8e

History | View | Annotate | Download (1.6 kB)

1
/* Table of Contents
2

    
3
- editable 
4

    
5
*/
6

    
7
/* editable (used for changing info asychronously) ------------------ */
8

    
9
.editable {
10
	.editbuttons {		
11
		a {
12
			&.save {
13
				display: none;
14
				span {
15
					font-size: 18px;
16
				}
17
			} 
18
			&.cancel {
19
				@extend a.save
20
			}
21
		}
22
	}
23
	input[type="text"] {
24
		display: none;
25
	}
26
}
27
.input {
28
	display: inline-block;
29
	background:url(../images/input-bg-lt.png) no-repeat left bottom;
30
	padding-left:5px;
31
	input[type="text"] {
32
		width: 145px;
33
		padding:0 12px 0 6px;
34
		border:0 none;
35
		background:url(../images/input-bg-rt.png) no-repeat right bottom;
36
		background-color: transparent;
37
		outline: 0;
38
		margin:0;
39
		color: $wizard-base-font-color;
40
		//to be improved!!!!
41
		-webkit-box-shadow: none;
42
		-moz-box-shadow:    none;
43
		box-shadow: none;
44

    
45
		&.tag_name {
46
			width: 70px;
47
		}
48
	}
49
}
50
.advanced-conf-step {
51
	#color {
52
		@extend .tag-demo;
53
		margin: 0 6px 0 15px;
54
		
55
		bottom: -10px;
56
		color: transparent;
57
	}
58

    
59
	.snf-color-picker>form {
60
		height:237px;
61
		width: 100%
62
	}
63
}
64
.wizard {
65
	form.custom .custom.dropdown.medium {
66
		background:$overlay-color;
67
		color:white;
68
	}
69
	form.custom .custom.dropdown .current {
70
		color:white;
71
	}
72
	form.custom .custom.dropdown .selector {
73
		border-left:1px solid white;
74
		height: 30px;
75
	}
76
	form.custom .custom.dropdown.open ul {
77
		background:$overlay-color;
78
		color:white;
79
	}
80
	form.custom .custom.dropdown ul li {
81
		color:white;
82
	}
83
	form.custom .custom.dropdown ul li.selected {
84
		color:white;
85
		background:lighten($overlay-color,10%);
86
	}
87
	form.custom .custom.dropdown ul li:hover {
88
		background:lighten($overlay-color,20%);
89
		color:white;
90
	}
91
}