Make form columns and popover more responsive
This commit is contained in:
parent
c7a5f6b8ea
commit
e24c37290b
|
|
@ -8,7 +8,7 @@
|
|||
<?php if ($paginator->isEmpty()): ?>
|
||||
<p class="alert"><?= t('There is no group.') ?></p>
|
||||
<?php else: ?>
|
||||
<table class="table-small table-fixed">
|
||||
<table class="table-small table-fixed table-scrolling">
|
||||
<tr>
|
||||
<th class="column-5"><?= $paginator->order(t('Id'), 'id') ?></th>
|
||||
<th class="column-20"><?= $paginator->order(t('External Id'), 'external_id') ?></th>
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -70,6 +70,14 @@ span.select2-container
|
|||
padding-top: 20px
|
||||
clear: both
|
||||
|
||||
.form-required
|
||||
color: red
|
||||
padding-left: 5px
|
||||
font-weight: bold
|
||||
|
||||
@include xs-device
|
||||
display: none
|
||||
|
||||
input.form-error, textarea.form-error
|
||||
border: 2px solid #b94a48
|
||||
|
||||
|
|
@ -77,11 +85,6 @@ input.form-error:focus, textarea.form-error:focus
|
|||
box-shadow: none
|
||||
border: 2px solid #b94a48
|
||||
|
||||
.form-required
|
||||
color: red
|
||||
padding-left: 5px
|
||||
font-weight: bold
|
||||
|
||||
.form-errors
|
||||
color: color('error')
|
||||
list-style-type: none
|
||||
|
|
@ -109,13 +112,13 @@ ul.form-errors li
|
|||
display: inline
|
||||
|
||||
.form-columns
|
||||
display: -webkit-flex
|
||||
display: flex
|
||||
-webkit-flex-direction: row
|
||||
flex-direction: row
|
||||
+display-flex
|
||||
+flex-direction(row)
|
||||
+flex-wrap
|
||||
+justify-content(flex-start)
|
||||
|
||||
.form-column
|
||||
margin-right: 25px
|
||||
.form-column
|
||||
margin-right: 25px
|
||||
|
||||
.form-login
|
||||
width: 350px
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
@import variables
|
||||
@import mixins
|
||||
|
||||
#popover-container
|
||||
position: fixed
|
||||
|
|
@ -12,13 +13,21 @@
|
|||
|
||||
#popover-content
|
||||
position: absolute
|
||||
width: 70%
|
||||
left: 15%
|
||||
width: 75%
|
||||
left: 12%
|
||||
top: 1%
|
||||
padding: 15px
|
||||
background: #fff
|
||||
overflow: auto
|
||||
max-height: 90%
|
||||
max-height: 95%
|
||||
|
||||
@include xs-device
|
||||
left: 0
|
||||
width: 100%
|
||||
|
||||
@include sm-device
|
||||
left: 2.5%
|
||||
width: 85%
|
||||
|
||||
.popover-form
|
||||
margin-bottom: 0
|
||||
|
|
|
|||
|
|
@ -20,8 +20,8 @@
|
|||
@import sidebar
|
||||
@import avatar
|
||||
@import file_upload
|
||||
@import thumbnails
|
||||
@import color_picker
|
||||
@import files
|
||||
@import filter_box
|
||||
@import project
|
||||
@import project_overview
|
||||
|
|
|
|||
Loading…
Reference in New Issue