source: trip-planner-front/node_modules/primeng/resources/components/dropdown/dropdown.css@ e29cc2e

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

adding photos

  • Property mode set to 100644
File size: 1.3 KB
Line 
1.p-dropdown {
2 display: inline-flex;
3 cursor: pointer;
4 position: relative;
5 user-select: none;
6}
7
8.p-dropdown-clear-icon {
9 position: absolute;
10 top: 50%;
11 margin-top: -.5rem;
12}
13
14.p-dropdown-trigger {
15 display: flex;
16 align-items: center;
17 justify-content: center;
18 flex-shrink: 0;
19}
20
21.p-dropdown-label {
22 display: block;
23 white-space: nowrap;
24 overflow: hidden;
25 flex: 1 1 auto;
26 width: 1%;
27 text-overflow: ellipsis;
28 cursor: pointer;
29}
30
31.p-dropdown-label-empty {
32 overflow: hidden;
33 visibility: hidden;
34}
35
36input.p-dropdown-label {
37 cursor: default;
38}
39
40.p-dropdown .p-dropdown-panel {
41 min-width: 100%;
42}
43
44.p-dropdown-panel {
45 position: absolute;
46 top: 0;
47 left: 0;
48}
49
50.p-dropdown-items-wrapper {
51 overflow: auto;
52}
53
54.p-dropdown-item {
55 cursor: pointer;
56 font-weight: normal;
57 white-space: nowrap;
58 position: relative;
59 overflow: hidden;
60}
61
62.p-dropdown-items {
63 margin: 0;
64 padding: 0;
65 list-style-type: none;
66}
67
68.p-dropdown-filter {
69 width: 100%;
70}
71
72.p-dropdown-filter-container {
73 position: relative;
74}
75
76.p-dropdown-filter-icon {
77 position: absolute;
78 top: 50%;
79 margin-top: -.5rem;
80}
81
82.p-fluid .p-dropdown {
83 display: flex;
84}
85
86.p-fluid .p-dropdown .p-dropdown-label {
87 width: 1%;
88}
Note: See TracBrowser for help on using the repository browser.