summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-03-29 11:06:58 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-03-29 11:06:58 +0900
commitf5ebfdca61d6c7ec2cfaaf0d3691688e9cf0a37e (patch)
tree3f7554cc86df3e53fc1484ca35581329b4a39b28
parentClean up (diff)
downloadsharkey-f5ebfdca61d6c7ec2cfaaf0d3691688e9cf0a37e.tar.gz
sharkey-f5ebfdca61d6c7ec2cfaaf0d3691688e9cf0a37e.tar.bz2
sharkey-f5ebfdca61d6c7ec2cfaaf0d3691688e9cf0a37e.zip
:art:
-rw-r--r--src/client/widgets/memo.vue17
1 files changed, 2 insertions, 15 deletions
diff --git a/src/client/widgets/memo.vue b/src/client/widgets/memo.vue
index 974c13eb0d..3c170adc4e 100644
--- a/src/client/widgets/memo.vue
+++ b/src/client/widgets/memo.vue
@@ -5,7 +5,7 @@
<div class="otgbylcu">
<textarea v-model="text" :placeholder="$t('placeholder')" @input="onChange"></textarea>
- <button @click="saveMemo" :disabled="!changed">{{ $t('save') }}</button>
+ <button @click="saveMemo" :disabled="!changed" class="_buttonPrimary">{{ $t('save') }}</button>
</div>
</mk-container>
</div>
@@ -84,6 +84,7 @@ export default define({
border: none;
border-bottom: solid var(--lineWidth) var(--faceDivider);
border-radius: 0;
+ box-sizing: border-box;
}
> button {
@@ -94,22 +95,8 @@ export default define({
margin: 0;
padding: 0 10px;
height: 28px;
- color: #fff;
- background: var(--accent) !important;
outline: none;
- border: none;
border-radius: 4px;
- transition: background 0.1s ease;
- cursor: pointer;
-
- &:hover {
- background: var(--accentLighten10) !important;
- }
-
- &:active {
- background: var(--accentDarken) !important;
- transition: background 0s ease;
- }
&:disabled {
opacity: 0.7;