Last change
on this file since 84d0fbb was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago |
adding photos
|
-
Property mode
set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | .p-cascadeselect {
|
---|
2 | display: inline-flex;
|
---|
3 | cursor: pointer;
|
---|
4 | position: relative;
|
---|
5 | user-select: none;
|
---|
6 | }
|
---|
7 |
|
---|
8 | .p-cascadeselect-trigger {
|
---|
9 | display: flex;
|
---|
10 | align-items: center;
|
---|
11 | justify-content: center;
|
---|
12 | flex-shrink: 0;
|
---|
13 | }
|
---|
14 |
|
---|
15 | .p-cascadeselect-label {
|
---|
16 | display: block;
|
---|
17 | white-space: nowrap;
|
---|
18 | overflow: hidden;
|
---|
19 | flex: 1 1 auto;
|
---|
20 | width: 1%;
|
---|
21 | text-overflow: ellipsis;
|
---|
22 | cursor: pointer;
|
---|
23 | }
|
---|
24 |
|
---|
25 | .p-cascadeselect-label-empty {
|
---|
26 | overflow: hidden;
|
---|
27 | visibility: hidden;
|
---|
28 | }
|
---|
29 |
|
---|
30 | .p-cascadeselect .p-cascadeselect-panel {
|
---|
31 | min-width: 100%;
|
---|
32 | }
|
---|
33 |
|
---|
34 | .p-cascadeselect-panel {
|
---|
35 | position: absolute;
|
---|
36 | top: 0;
|
---|
37 | left: 0;
|
---|
38 | }
|
---|
39 |
|
---|
40 | .p-cascadeselect-item {
|
---|
41 | cursor: pointer;
|
---|
42 | font-weight: normal;
|
---|
43 | white-space: nowrap;
|
---|
44 | }
|
---|
45 |
|
---|
46 | .p-cascadeselect-item-content {
|
---|
47 | display: flex;
|
---|
48 | align-items: center;
|
---|
49 | overflow: hidden;
|
---|
50 | position: relative;
|
---|
51 | }
|
---|
52 |
|
---|
53 | .p-cascadeselect-group-icon {
|
---|
54 | margin-left: auto;
|
---|
55 | }
|
---|
56 |
|
---|
57 | .p-cascadeselect-items {
|
---|
58 | margin: 0;
|
---|
59 | padding: 0;
|
---|
60 | list-style-type: none;
|
---|
61 | }
|
---|
62 |
|
---|
63 | .p-fluid .p-cascadeselect {
|
---|
64 | display: flex;
|
---|
65 | }
|
---|
66 |
|
---|
67 | .p-fluid .p-cascadeselect .p-cascadeselect-label {
|
---|
68 | width: 1%;
|
---|
69 | }
|
---|
70 |
|
---|
71 | .p-cascadeselect-sublist {
|
---|
72 | position: absolute;
|
---|
73 | min-width: 100%;
|
---|
74 | z-index: 1;
|
---|
75 | display: none;
|
---|
76 | }
|
---|
77 |
|
---|
78 | .p-cascadeselect-item-active {
|
---|
79 | overflow: visible !important;
|
---|
80 | }
|
---|
81 |
|
---|
82 | .p-cascadeselect-item-active > .p-cascadeselect-sublist {
|
---|
83 | display: block;
|
---|
84 | left: 100%;
|
---|
85 | top: 0;
|
---|
86 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.