diff --git a/static/css/core-ui.css b/static/css/core-ui.css index 2bce477fd..bc016a843 100644 --- a/static/css/core-ui.css +++ b/static/css/core-ui.css @@ -75,7 +75,7 @@ } .co-nav-title .co-nav-title-content { - max-height: 50px; + height: 28px; overflow: hidden; text-overflow: ellipsis; font-size: 22px; @@ -329,6 +329,21 @@ padding: 10px; } +@media (max-width: 767px) { + .co-panel > .co-panel-body { + padding: 0px; + padding-top: 10px; + padding-bottom: 10px; + } + + .co-panel > .panel-body { + padding: 0px; + padding-top: 10px; + padding-bottom: 10px; + } +} + + .co-panel .co-panel-button-bar { margin-top: 10px; padding-top: 10px; @@ -982,6 +997,12 @@ padding-left: 28px; } +@media (max-width: 767px) { + .co-table tr.indented-row td:first-child { + padding-left: 0px; + } +} + .co-table .mobile-row { border-bottom: 2px solid #eee; padding-bottom: 10px; diff --git a/static/css/directives/repo-view/repo-panel-settings.css b/static/css/directives/repo-view/repo-panel-settings.css index 78e2c6b62..ff626b9ba 100644 --- a/static/css/directives/repo-view/repo-panel-settings.css +++ b/static/css/directives/repo-view/repo-panel-settings.css @@ -23,3 +23,17 @@ .repo-panel-settings-element .panel-section .btn .fa { margin-right: 6px; } + +.repo-panel-settings-element .delete-btn { + float: right; + margin-top: -7px !important; +} + +@media (max-width: 767px) { + .repo-panel-settings-element .delete-btn { + float: none; + margin-top: 0px !important; + margin-bottom: 20px; + display: block; + } +} \ No newline at end of file diff --git a/static/css/directives/repo-view/repo-panel-tags.css b/static/css/directives/repo-view/repo-panel-tags.css index c515b9190..2d23e76a6 100644 --- a/static/css/directives/repo-view/repo-panel-tags.css +++ b/static/css/directives/repo-view/repo-panel-tags.css @@ -83,4 +83,33 @@ .repo-panel-tags-element .tag-image-history-item .fa-circle-o { margin-right: 2px; +} + + +@media (max-width: 767px) { + .repo-panel-tags-element .tag-span i { + display: none; + } + + .repo-panel-tags-element .co-filter-box { + display: block; + float: none; + margin-top: 10px; + margin-bottom: 20px; + } + + .repo-panel-tags-element .co-filter-box input { + width: 100%; + } + + .repo-panel-tags-element .co-checked-actions .btn i { + font-size: 16px; + width: 18px; + text-align: center; + display: inline-block; + } + + .repo-panel-tags-element .co-checked-actions .btn .text { + display: none; + } } \ No newline at end of file diff --git a/static/css/directives/ui/logs-view.css b/static/css/directives/ui/logs-view.css index a561ecef7..198bad42f 100644 --- a/static/css/directives/ui/logs-view.css +++ b/static/css/directives/ui/logs-view.css @@ -25,7 +25,7 @@ } .logs-view-element .manager-header { - padding-bottom: 72px; + padding-bottom: 82px; } } diff --git a/static/css/directives/ui/repo-tag-history.css b/static/css/directives/ui/repo-tag-history.css index a0a2c2df7..e883b5c22 100644 --- a/static/css/directives/ui/repo-tag-history.css +++ b/static/css/directives/ui/repo-tag-history.css @@ -18,6 +18,26 @@ height: 40px; } +.repo-tag-history-element .co-filter-box { + float: right; +} + + +@media (max-width: 767px) { + .repo-tag-history-element .history-list { + margin: 10px; + } + + .repo-tag-history-element .history-entry .history-text { + height: 60px; + } + + .repo-tag-history-element .co-filter-box { + float: none; + display: block; + } +} + .repo-tag-history-element .history-entry.filtered-mismatch { margin-top: 10px; } diff --git a/static/css/directives/ui/repository-permissions-table.css b/static/css/directives/ui/repository-permissions-table.css index 437e6d57e..a77655ae1 100644 --- a/static/css/directives/ui/repository-permissions-table.css +++ b/static/css/directives/ui/repository-permissions-table.css @@ -12,4 +12,10 @@ left: -2px; font-size: 16px; color: #E8BB03; +} + +.repository-permissions-table .mobile-add-row { + margin-top: 6px; + padding-top: 10px; + border-top: 2px solid #eee; } \ No newline at end of file diff --git a/static/css/directives/ui/role-group.css b/static/css/directives/ui/role-group.css new file mode 100644 index 000000000..d1ed50bc6 --- /dev/null +++ b/static/css/directives/ui/role-group.css @@ -0,0 +1,52 @@ +.role-group .btn { + width: 90px; + position: relative; + text-align: left; +} + +.role-group .btn .caret { + position: absolute; + top: 15px; + right: 7px; +} + +.role-group .role-help-text { + font-size: 12px; + color: #ccc; + margin-top: 4px; + margin-bottom: 2px; +} + +.role-group .btn { + border-left: 4px solid #ccc; +} + +.role-group .btn.success { + border-left-color: #5cb85c; +} + +.role-group .btn.primary { + border-left-color: #337ab7; +} + +.role-group li a { + vertical-align: middle; +} + +.role-group li a:before { + content: ""; + border-radius: 50%; + width: 10px; + height: 10px; + background: #ccc; + display: inline-block; + margin-right: 6px; +} + +.role-group li.success a:before { + background-color: #5cb85c; +} + +.role-group li.primary a:before { + background-color: #337ab7; +} \ No newline at end of file diff --git a/static/css/pages/repo-view.css b/static/css/pages/repo-view.css index dd0c3d298..899fbb475 100644 --- a/static/css/pages/repo-view.css +++ b/static/css/pages/repo-view.css @@ -47,4 +47,4 @@ .repository-view .tag-span { white-space: nowrap; -} \ No newline at end of file +} diff --git a/static/css/pages/super-user.css b/static/css/pages/super-user.css deleted file mode 100644 index e69de29bb..000000000 diff --git a/static/directives/image-info-sidebar.html b/static/directives/image-info-sidebar.html index 06eb56b37..ed89bb0ec 100644 --- a/static/directives/image-info-sidebar.html +++ b/static/directives/image-info-sidebar.html @@ -10,7 +10,7 @@