forked from DNNCommunity/DNN.Showcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Module.css
72 lines (57 loc) · 1.12 KB
/
Module.css
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
.table td, .table th {
vertical-align: middle !important;
}
/*.table .dropdown-toggle {
visibility: hidden;
}
.table .dropdown-toggle::after {
content: none;
}
.table tr:hover .dropdown-toggle {
visibility: visible;
}*/
.tab-pane {
padding-top: 10px;
}
.modal-full {
position: absolute !important;
top: 20px;
left: 100px;
width: calc(100% - 140px) !important;
height: calc(100% - 40px);
max-width: none !important;
}
/* simulate invalde-feedback for controls that dont support HTML5 validation */
.error.text-danger {
width: 100%;
margin-top: .25rem;
font-size: 80%;
color: #dc3545;
}
.modal.fade.in {
opacity: 1;
}
.modal.fade .modal-dialog {
transform: translate(0, 0) !important;
}
.modal-backdrop.fade {
opacity: 0.5 !important;
}
.modal-header {
display: block !important;
}
.modal-content {
border-radius: 1.3rem !important;
}
.fadeIn.ng-enter {
transition: 1s linear all;
opacity: 0;
}
.fadeIn.ng-enter-stagger {
transition-delay: 0.1s;
transition-duration: 0s;
}
.fadeIn.ng-enter.ng-enter-active {
opacity: 1;
}