source: trip-planner-front/node_modules/primeng/resources/components/common/common.css@ b738035

Last change on this file since b738035 was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 2.1 KB
Line 
1.p-component, .p-component * {
2 box-sizing: border-box;
3}
4
5.p-hidden {
6 display: none;
7}
8
9.p-hidden-space {
10 visibility: hidden;
11}
12
13.p-hidden-accessible {
14 border: 0;
15 clip: rect(0 0 0 0);
16 height: 1px;
17 margin: -1px;
18 overflow: hidden;
19 padding: 0;
20 position: absolute;
21 width: 1px;
22}
23
24.p-hidden-accessible input,
25.p-hidden-accessible select {
26 transform: scale(0);
27}
28
29.p-reset {
30 margin: 0;
31 padding: 0;
32 border: 0;
33 outline: 0;
34 text-decoration: none;
35 font-size: 100%;
36 list-style: none;
37}
38
39.p-disabled, .p-disabled * {
40 cursor: default !important;
41 pointer-events: none;
42}
43
44.p-component-overlay {
45 position: fixed;
46 top: 0;
47 left: 0;
48 width: 100%;
49 height: 100%;
50}
51
52.p-overflow-hidden {
53 overflow: hidden;
54}
55
56.p-unselectable-text {
57 user-select: none;
58}
59
60.p-scrollbar-measure {
61 width: 100px;
62 height: 100px;
63 overflow: scroll;
64 position: absolute;
65 top: -9999px;
66}
67
68@-webkit-keyframes p-fadein {
69 0% { opacity: 0; }
70 100% { opacity: 1; }
71}
72@keyframes p-fadein {
73 0% { opacity: 0; }
74 100% { opacity: 1; }
75}
76
77input[type="button"],
78input[type="submit"],
79input[type="reset"],
80input[type="file"]::-webkit-file-upload-button,
81button {
82 border-radius: 0;
83}
84
85.p-link {
86 text-align: left;
87 background-color: transparent;
88 margin: 0;
89 padding: 0;
90 border: none;
91 cursor: pointer;
92 user-select: none;
93}
94
95.p-sr-only {
96 border: 0;
97 clip: rect(1px, 1px, 1px, 1px);
98 clip-path: inset(50%);
99 height: 1px;
100 margin: -1px;
101 overflow: hidden;
102 padding: 0;
103 position: absolute;
104 width: 1px;
105 word-wrap: normal !important;
106}
107
108/* Non ng overlay animations */
109.p-connected-overlay {
110 opacity: 0;
111 transform: scaleY(0.8);
112 transition: transform .12s cubic-bezier(0, 0, 0.2, 1), opacity .12s cubic-bezier(0, 0, 0.2, 1);
113}
114
115.p-connected-overlay-visible {
116 opacity: 1;
117 transform: scaleY(1);
118}
119
120.p-connected-overlay-hidden {
121 opacity: 0;
122 transform: scaleY(1);
123 transition: opacity .1s linear;
124}
125
126.p-toggleable-content.ng-animating {
127 overflow: hidden;
128}
129
Note: See TracBrowser for help on using the repository browser.