summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.modal.less
blob: b6ee63f8350bcae48a8be54676e82b71ac8d7cb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
.bulk-user-modal {
	height: 430px;

	.title {
		.dGray18r;  //AT&T Dark Gray
		border-bottom: @blue-active 3px solid;
	}
	
	.main {
		margin: 16px;
    
		.upload-instructions {
			.dGray14r;
		}
		
		// http://stackoverflow.com/questions/572768/styling-an-input-type-file-button

		.file-label {
			border: 1px solid #ffffff;
			border-radius: 6px;
			margin-top: 4px;
			margin-bottom: 4px;
			margin-left: 0px;
			margin-right: 8px;
			color: #ffffff;
			background: #067ab4;
			display: inline-block;
			text-align: center;
			font-family: Omnes-ECOMP-W02-Medium,Arial;
			font-size: 14px;
			height: 29px;
			line-height: 29px;
			width: 90px;

			input[type="file"] {
				// Hide the browser's control
				display: none;
			}
		
		}

		.file-label:hover {
			background: #009fdb;
		}
		
		.file-label:active {
			background: #009fdb;
		}
		
		.file-label:invalid+span {
			color: #ffffff;
		}
		
		.file-label:valid+span {
			color: #ffffff;
		}

	}
    
}