Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (1.5 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: $overlay-color;
39
			outline: 0;
40
			margin:0;
41
			color: $wizard-base-font-color;
42
			//to be improved!!!!
43
			-webkit-box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
44
			-moz-box-shadow:    7px 7px 0px rgba(72, 80, 87, 0);
45
			box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
46
		}
47
	}
48
}
49
.wizard {
50
	form.custom .custom.dropdown.medium {
51
		background:$overlay-color;
52
		color:white;
53
	}
54
	form.custom .custom.dropdown .current {
55
		color:white;
56
	}
57
	form.custom .custom.dropdown .selector {
58
		border-left:1px solid white;
59
		height: 30px;
60
	}
61
	form.custom .custom.dropdown.open ul {
62
		background:$overlay-color;
63
		color:white;
64
	}
65
	form.custom .custom.dropdown ul li {
66
		color:white;
67
	}
68
	form.custom .custom.dropdown ul li.selected {
69
		color:white;
70
		background:lighten($overlay-color,10%);
71
	}
72
	form.custom .custom.dropdown ul li:hover {
73
		background:lighten($overlay-color,20%);
74
		color:white;
75
	}
76
}