Statistics
| Branch: | Tag: | Revision:

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

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

    
28
.advanced-conf-step {
29
	.input {
30
		display: inline-block;
31
		background:url(../images/input-bg-lt.png) no-repeat left bottom;
32
		padding-left:6px;
33
		input[type="text"] {
34
			width: 145px;
35
			padding:0 12px 0 6px;
36
			border:0 none;
37
			background:url(../images/input-bg-rt.png) no-repeat right bottom;
38
			background-color: transparent;
39
			outline: 0;
40
			margin:0;
41
			color: $wizard-base-font-color;
42
			//to be improved!!!!
43
			-webkit-box-shadow: none;
44
			-moz-box-shadow:    none;
45
			box-shadow: none;
46

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

    
60
	.snf-color-picker>form {
61
		height:237px;
62
		width: 100%
63
	}
64

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