ctucx.git: ctucx.things

simple inventory management web-app

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 
61 
62 
63 
64 
65 
66 
67 
68 
69 
70 
71 
72 
73 
74 
75 
@import "globals";

.lpSilent {
	background: transparent;
	border: 1px solid transparent;

	&:hover {
		background-color: #fff;
		border: 1px solid rgba(0, 0, 0, 0.15);
	}

	&:focus {
		background-color: #fff;
		border: 1px solid rgba(0, 0, 0, 0.15);
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
		outline: none;
	}

	&.lpSilentError {
		background-color: lighten(desaturate($red1, 10%), 40%);
		border: 1px solid $red1;
		outline-color: $red1;

		&:focus {
			background-color: #fff;
		}
	}
}

/* Body */

.addCategory,
.lpAddItem {
	margin-left: 20px;
	margin-top: 6px;
}

#csv,
#image {
	height: 1px;
	left: -999px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.lpHref.close {
	margin-left: 10px;
}

.gu-mirror {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	margin: 0 !important;
	opacity: 0.8;
	position: fixed !important;
	z-index: 9999 !important;
}

.gu-hide {
	display: none !important;
}

.gu-unselectable {
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
}

.gu-transit {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
	opacity: 0.2;
}