Built motion from commit 54a160d.|0.0.140
[motion.git] / public / bower_components / angular-xeditable / xeditable.css
1
2 /* ==== editable-form ==== */
3
4 /* class for single editable element */
5 .editable-wrap {
6   display: inline-block;
7   white-space: nowrap;
8   margin: 0;
9 }
10
11 /* remove bottom-margin for bootstrap */
12 .editable-wrap .editable-controls,
13 .editable-wrap .editable-error {
14   margin-bottom: 0;
15 }
16
17 /* remove bottom-margin of inputs */
18 .editable-wrap .editable-controls > input,
19 .editable-wrap .editable-controls > select,
20 .editable-wrap .editable-controls > textarea {
21   margin-bottom: 0;
22 }
23
24 /* keep buttons on the same line */
25 .editable-wrap .editable-input {
26   display: inline-block;
27 }
28
29 .editable-buttons {
30   display: inline-block;
31   vertical-align: top;
32 }
33
34 .editable-buttons button {
35   margin-left: 5px;
36 }
37
38 /* in bootstrap width: 100% => buttons go outside the box */
39 .editable-input.editable-has-buttons {
40   width: auto;
41 }
42
43 /* ==== editable-bstime ==== */
44
45 /* workaround for bootstrap that sets width: 100% and inputs become too wide */
46 .editable-bstime .editable-input input[type="text"] {
47   width: 46px;
48 }
49
50 /* less padding for .well */
51 .editable-bstime .well-small {
52   margin-bottom: 0;
53   padding: 10px;
54 }
55
56 /* ==== editable-range ==== */
57
58 .editable-range output {
59   display: inline-block;
60   min-width: 30px;
61   vertical-align: top;
62   text-align: center;
63 }
64
65 /* ==== editable-color ==== */
66
67 .editable-color input[type="color"] {
68   width: 50px;
69 }
70
71
72 /* ==== editable-checkbox ==== */
73 /* ==== editable-checklist ==== */
74 /* ==== editable-radiolist ==== */
75
76 .editable-checkbox label span,
77 .editable-checklist label span,
78 .editable-radiolist label span {
79   margin-left: 7px;
80   margin-right: 10px;
81 }
82
83 /* ==== element ==== */
84
85 /* hiding element */
86 .editable-hide {
87   display: none !important;
88 }
89
90 .editable-click,
91 a.editable-click {
92   text-decoration: none;
93   color: #428bca;
94   border-bottom: dashed 1px #428bca;
95 }
96
97 .editable-click:hover, 
98 a.editable-click:hover {
99   text-decoration: none;
100   color: #2a6496;
101   border-bottom-color: #2a6496;
102 }
103
104 /* editable-empty */
105 .editable-empty, 
106 .editable-empty:hover, 
107 .editable-empty:focus,
108 a.editable-empty, 
109 a.editable-empty:hover, 
110 a.editable-empty:focus {
111   font-style: italic; 
112   color: #DD1144;  
113   text-decoration: none;
114 }
115
116