Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (1.6 kB)

1 15948f00 Olga Brani
/* Table of Contents
2 15948f00 Olga Brani
3 15948f00 Olga Brani
- editable 
4 15948f00 Olga Brani
5 15948f00 Olga Brani
*/
6 15948f00 Olga Brani
7 15948f00 Olga Brani
/* editable (used for changing info asychronously) ------------------ */
8 15948f00 Olga Brani
9 673ea014 Olga Brani
.editable {
10 673ea014 Olga Brani
	.editbuttons {		
11 673ea014 Olga Brani
		a {
12 8db75456 Athina Bekakou
			&.save {
13 8db75456 Athina Bekakou
				display: none;
14 8db75456 Athina Bekakou
				span {
15 8db75456 Athina Bekakou
					font-size: 18px;
16 8db75456 Athina Bekakou
				}
17 8db75456 Athina Bekakou
			} 
18 8db75456 Athina Bekakou
			&.cancel {
19 8db75456 Athina Bekakou
				@extend a.save
20 8db75456 Athina Bekakou
			}
21 673ea014 Olga Brani
		}
22 673ea014 Olga Brani
	}
23 673ea014 Olga Brani
	input[type="text"] {
24 673ea014 Olga Brani
		display: none;
25 673ea014 Olga Brani
	}
26 af86484e Olga Brani
}
27 af86484e Olga Brani
28 af86484e Olga Brani
.advanced-conf-step {
29 af86484e Olga Brani
	.input {
30 af86484e Olga Brani
		display: inline-block;
31 af86484e Olga Brani
		background:url(../images/input-bg-lt.png) no-repeat left bottom;
32 af86484e Olga Brani
		padding-left:6px;
33 af86484e Olga Brani
		input[type="text"] {
34 af86484e Olga Brani
			width: 145px;
35 af86484e Olga Brani
			padding:0 12px 0 6px;
36 af86484e Olga Brani
			border:0 none;
37 af86484e Olga Brani
			background:url(../images/input-bg-rt.png) no-repeat right bottom;
38 314323e8 Athina Bekakou
			background-color: transparent;
39 af86484e Olga Brani
			outline: 0;
40 af86484e Olga Brani
			margin:0;
41 af86484e Olga Brani
			color: $wizard-base-font-color;
42 af86484e Olga Brani
			//to be improved!!!!
43 314323e8 Athina Bekakou
			-webkit-box-shadow: none;
44 314323e8 Athina Bekakou
			-moz-box-shadow:    none;
45 314323e8 Athina Bekakou
			box-shadow: none;
46 314323e8 Athina Bekakou
47 314323e8 Athina Bekakou
			&.tag_name {
48 314323e8 Athina Bekakou
				width: 70px;
49 314323e8 Athina Bekakou
			}
50 af86484e Olga Brani
		}
51 af86484e Olga Brani
	}
52 314323e8 Athina Bekakou
	#color {
53 314323e8 Athina Bekakou
		@extend .tag-demo;
54 314323e8 Athina Bekakou
		margin: 0 6px 0 15px;
55 314323e8 Athina Bekakou
		
56 314323e8 Athina Bekakou
		bottom: -10px;
57 314323e8 Athina Bekakou
		color: transparent;
58 314323e8 Athina Bekakou
	}
59 314323e8 Athina Bekakou
60 314323e8 Athina Bekakou
	.snf-color-picker>form {
61 314323e8 Athina Bekakou
		height:237px;
62 314323e8 Athina Bekakou
		width: 100%
63 314323e8 Athina Bekakou
	}
64 314323e8 Athina Bekakou
65 af86484e Olga Brani
}
66 af86484e Olga Brani
.wizard {
67 af86484e Olga Brani
	form.custom .custom.dropdown.medium {
68 af86484e Olga Brani
		background:$overlay-color;
69 af86484e Olga Brani
		color:white;
70 af86484e Olga Brani
	}
71 af86484e Olga Brani
	form.custom .custom.dropdown .current {
72 af86484e Olga Brani
		color:white;
73 af86484e Olga Brani
	}
74 af86484e Olga Brani
	form.custom .custom.dropdown .selector {
75 af86484e Olga Brani
		border-left:1px solid white;
76 af86484e Olga Brani
		height: 30px;
77 af86484e Olga Brani
	}
78 af86484e Olga Brani
	form.custom .custom.dropdown.open ul {
79 af86484e Olga Brani
		background:$overlay-color;
80 af86484e Olga Brani
		color:white;
81 af86484e Olga Brani
	}
82 af86484e Olga Brani
	form.custom .custom.dropdown ul li {
83 af86484e Olga Brani
		color:white;
84 af86484e Olga Brani
	}
85 af86484e Olga Brani
	form.custom .custom.dropdown ul li.selected {
86 af86484e Olga Brani
		color:white;
87 af86484e Olga Brani
		background:lighten($overlay-color,10%);
88 af86484e Olga Brani
	}
89 af86484e Olga Brani
	form.custom .custom.dropdown ul li:hover {
90 af86484e Olga Brani
		background:lighten($overlay-color,20%);
91 af86484e Olga Brani
		color:white;
92 af86484e Olga Brani
	}
93 af86484e Olga Brani
}