- Make robots manager fully responsive

- Add a cor-table which automatically stacks and collapses on mobile views
This commit is contained in:
Joseph Schorr 2015-04-17 16:43:53 -04:00
parent d26927cb45
commit 32635cc641
8 changed files with 222 additions and 37 deletions

View file

@ -100,6 +100,12 @@
padding: 30px;
}
@media (max-width: 767px) {
.co-tab-content {
padding: 20px;
}
}
.co-tabs li {
list-style: none;
display: block;
@ -206,15 +212,16 @@
}
.co-tab-element.open li {
display: block;
height: 60px;
}
.co-tab-element.closed li {
display: none;
height: 0px;
overflow: hidden;
}
.co-tab-element.closed li.active {
display: block;
height: 60px;
}
}
@ -960,6 +967,36 @@
padding-left: 28px;
}
.co-table .mobile-row {
border-bottom: 2px solid #eee;
padding-bottom: 10px;
margin-bottom: 10px;
position: relative;
}
.co-table .mobile-row:last-child {
border-bottom: 0px solid #eee;
padding-bottom: 0px;
margin-bottom: 0px;
}
.co-table .mobile-row .mobile-col-header {
font-weight: bold;
color: #444;
}
.co-table .mobile-row .mobile-col-value {
padding: 6px;
}
.co-table .mobile-row .options-col {
position: absolute;
top: -6px;
right: 0px;
}
.cor-checkable-menu {
display: inline-block;
}

View file

@ -0,0 +1,55 @@
.manager-header {
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.manager-header h3 {
margin-bottom: 10px;
}
.manager-header .manager-header-side-controls {
float: right;
}
.manager-filter-box {
margin-bottom: 20px;
height: 30px;
}
.manager-filter-box input {
float: right;
min-width: 175px;
max-width: 300px;
}
@media (max-width: 767px) {
.manager-header {
position: relative;
padding-bottom: 36px;
}
.manager-header .manager-header-side-controls {
float: none;
display: block;
border-top: 1px solid #eee;
padding-top: 6px;
position: absolute;
top: 34px;
left: 0px;
right: 0px;
}
.manager-header .manager-header-side-controls .btn {
display: block;
width: 100%;
}
.manager-filter-box {
margin-bottom: 30px;
}
.manager-filter-box input {
max-width: none;
}
}

View file

@ -1,3 +1,7 @@
.robots-manager-element .robot {
white-space: nowrap;
}
.robots-manager-element .robot a {
font-size: 16px;
cursor: pointer;
@ -78,9 +82,3 @@
.robots-manager-element .member-perm-summary {
margin-right: 14px;
}
.robots-manager-element .co-filter-box {
float: right;
min-width: 175px;
margin-bottom: 10px;
}

View file

@ -4744,13 +4744,3 @@ i.rocket-icon {
text-align: center;
}
.manager-header {
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.manager-header h3 {
margin-bottom: 10px;
}