Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
⚡ improvement(client-addon): update some styles (#62) by @jCrip
Browse files Browse the repository at this point in the history
  • Loading branch information
jCrip authored and kazupon committed Oct 15, 2019
1 parent 573098b commit 1f19a93
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
11 changes: 6 additions & 5 deletions client-addon/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ export default {
grid-area: content;
overflow-x: hidden;
overflow-y: auto;
margin: 16px;
}
.shell {
Expand All @@ -243,7 +244,7 @@ export default {
}
.content {
flex: 100% 1 1;
flex: 1 1 100%;
height: 0;
overflow-x: hidden;
overflow-y: auto;
Expand All @@ -259,7 +260,7 @@ export default {
.localization-header {
display: grid;
grid-gap: 6px;
grid-gap: 12px;
grid-template-columns: 6fr 6fr;
}
Expand All @@ -269,15 +270,15 @@ export default {
}
.localization-header .path {
padding: 12px;
padding: 12px 20px;
background: #f8fbfb;
border-bottom-color: #42b983;
border-bottom-style: solid;
border-bottom-width: 1px;
}
.localization-header .locale {
padding: 12px;
padding: 12px 20px;
background: #f8fbfb;
border-bottom-color: #42b983;
border-bottom-style: solid;
Expand All @@ -301,7 +302,7 @@ ul.localization-body {
ul.localization-body li {
display: grid;
grid-gap: 6px;
grid-gap: 12px;
grid-template-columns: 6fr 6fr;
}
Expand Down
9 changes: 7 additions & 2 deletions client-addon/src/components/MessageField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ export default {
<style scoped>
.message {
height: 24px;
padding: 12px;
padding: 12px 20px;
background: #f8fbfb;
border-bottom-color: #dbebec;
border-bottom-color: #bbe6d6;
border-bottom-style: solid;
border-bottom-width: 1px;
display: flex;
Expand All @@ -157,8 +157,13 @@ export default {
display: flex;
}
.vue-ui-button.primary {
margin-right: 6px;
}
.vue-ui-dark-mode .message {
background: #1d2935;
border-bottom-color: #344a5f;
}
.vue-ui-dark-mode .message:hover {
Expand Down
9 changes: 7 additions & 2 deletions client-addon/src/components/PathField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,9 @@ export default {
<style scoped>
.path {
height: 24px;
padding: 12px;
padding: 12px 20px;
background: #f8fbfb;
border-bottom-color: #dbebec;
border-bottom-color: #bbe6d6;
border-bottom-style: solid;
border-bottom-width: 1px;
display: flex;
Expand All @@ -242,8 +242,13 @@ export default {
display: flex;
}
.vue-ui-button.primary {
margin-right: 6px;
}
.vue-ui-dark-mode .path {
background: #1d2935;
border-bottom-color: #344a5f;
}
.vue-ui-dark-mode .path:hover {
Expand Down

0 comments on commit 1f19a93

Please sign in to comment.