mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-19 00:29:21 +01:00
LSformElement :: jsonCompositeAttribute: make CSS responsive
This commit is contained in:
parent
78b18a5729
commit
08c23d67a8
1 changed files with 34 additions and 0 deletions
|
@ -18,6 +18,7 @@ ul.LSformElement_jsonCompositeAttribute div label {
|
|||
vertical-align: top;
|
||||
width: 10em;
|
||||
font-weight: bold;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
ul.LSformElement_jsonCompositeAttribute div ul {
|
||||
|
@ -53,3 +54,36 @@ div.jsonCompositeAttribute_possibleValues li:hover {
|
|||
ul.LSformElement_jsonCompositeAttribute div select {
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
ul.LSformElement_jsonCompositeAttribute {
|
||||
width: 40vw;
|
||||
}
|
||||
|
||||
ul.LSformElement_jsonCompositeAttribute div label {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
ul.LSformElement_jsonCompositeAttribute div input[type=text], ul.LSformElement_jsonCompositeAttribute div select {
|
||||
width: calc(40vw - 10px);
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
ul.LSformElement_jsonCompositeAttribute {
|
||||
width: calc(100% - 1em);
|
||||
}
|
||||
|
||||
ul.LSformElement_jsonCompositeAttribute div ul {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
ul.LSformElement_jsonCompositeAttribute div ul input[type=text] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
ul.LSformElement_jsonCompositeAttribute div select {
|
||||
width: calc(100% - 4px);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue