diff --git a/app/ContainerDetails.react.js b/app/ContainerDetails.react.js index 57db628801..73e995b24a 100644 --- a/app/ContainerDetails.react.js +++ b/app/ContainerDetails.react.js @@ -171,17 +171,17 @@ var ContainerDetails = React.createClass({
- View - + View +
- Volume + Volume
- Restart + Restart
- Terminal + Terminal
diff --git a/app/ContainerModal.react.js b/app/ContainerModal.react.js index 2568d4f103..e454baa9ea 100644 --- a/app/ContainerModal.react.js +++ b/app/ContainerModal.react.js @@ -86,7 +86,10 @@ var ContainerModal = React.createClass({
- +
+ Create + +
); @@ -94,9 +97,9 @@ var ContainerModal = React.createClass({ var title; if (this.state.query) { - title =
Results
; + title =

Results

; } else { - title =
Recommended
; + title =

Recommended

; } return ( @@ -104,6 +107,7 @@ var ContainerModal = React.createClass({
+
What's an image?
@@ -115,7 +119,7 @@ var ContainerModal = React.createClass({
diff --git a/app/styles/containers.less b/app/styles/containers.less index bf9111ba4d..2159209d65 100644 --- a/app/styles/containers.less +++ b/app/styles/containers.less @@ -14,7 +14,6 @@ margin: 0; box-sizing: border-box; border-right: 1px solid #eee; - //padding: 10px 26px 0px 10px; .sidebar-header { flex: 0 auto; @@ -221,6 +220,8 @@ flex-direction: row; padding: 20px 40px 10px 40px; position: relative; + border-bottom: 1px solid transparent; + transition: border-bottom 0.25s; .action { margin-right: 24px; } @@ -228,6 +229,7 @@ .details-tabs { .tabs { + z-index: 0; float: right; margin-right: 40px; margin-top: -42px; @@ -282,12 +284,16 @@ .details-logs { flex: 1; overflow: auto; + h4 { + margin-top: 30px; + margin-left: 40px; + } .logs { user-select: text; font-family: Menlo; font-size: 12px; - padding: 44px 45px; - color: #595D5E; + padding: 18px 45px; + color: lighten(@gray-normal, 6%); white-space: pre-wrap; p { margin: 0 6px; diff --git a/app/styles/main.less b/app/styles/main.less index b812f33746..780e59028f 100644 --- a/app/styles/main.less +++ b/app/styles/main.less @@ -55,12 +55,6 @@ html, body { flex-direction: row; padding: 32px 32px; - .title { - color: #CCD3D5; - font-weight: 400; - font-size: 13px; - } - aside.custom { flex: 0 auto; padding-left: 32px; @@ -73,9 +67,20 @@ html, body { padding-right: 32px; border-right: 1px solid #eee; + .search-icon { + font-size: 20px; + color: @gray-normal; + position: absolute; + top: 40px; + left: 45px; + } + .question { a { - color: #CCD3D5; + color: @gray-lightest; + &:hover { + color: darken(@gray-lightest, 10%); + } } font-size: 10px; text-align: right; @@ -85,13 +90,15 @@ html, body { border-radius: 20px; font-size: 13px; height: 38px; - padding: 8px 16px; - font-weight: 400; - color: #666; + padding: 8px 16px 8px 40px; + font-weight: 300; + color: @gray-darkest; + margin-bottom: 3px; + border-color: lighten(@gray-lighter, 10%); &:focus { box-shadow: none; - border-color: #bbb; + border-color: @gray-lighter; } &::-webkit-input-placeholder { @@ -108,17 +115,25 @@ html, body { } ul { + margin-top: 10px; list-style: none; - color: #555; padding: 0; li { + &:hover { + background-color: lighten(@gray-lightest, 17.5%); + } display: flex; flex-direction: row; - margin: 12px; + padding: 8px 14px 5px 14px; + //margin: 12px; border-bottom: 1px solid #eee; + &:last-child { + border-bottom: 0; + } .info { .name { + color: @gray-darkest; max-width: 278px; img { margin-right: 6px; @@ -130,7 +145,7 @@ html, body { text-overflow: ellipsis; } .stars { - color: #A7A7A7; + color: @gray-lighter; margin-top: 2px; .star-count { @@ -152,6 +167,8 @@ html, body { flex: 0 auto; } .action { + position: relative; + top: 5px; text-align: right; flex: 1 auto; } diff --git a/app/styles/theme.less b/app/styles/theme.less index b861f7aaee..5093a8532c 100644 --- a/app/styles/theme.less +++ b/app/styles/theme.less @@ -85,14 +85,19 @@ h4 { box-shadow: none; font-weight: 400; text-shadow: none; - padding: 0px 14px 0px 14px; + padding: 6px 14px 6px 14px; height: 32px; .icon:before { + width: 20px; + height: 20px; position: relative; top: 5px; font-size: 20px; margin-right: 4px; } + &.with-icon { + padding: 0px 14px 6px 14px; + } &.only-icon { padding: 0px 5px 10px 5px; .icon:before {