summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/notes.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/pages/notes.scss')
-rw-r--r--app/assets/stylesheets/pages/notes.scss44
1 files changed, 44 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/notes.scss b/app/assets/stylesheets/pages/notes.scss
index ac8c02b59dc..f056bb22070 100644
--- a/app/assets/stylesheets/pages/notes.scss
+++ b/app/assets/stylesheets/pages/notes.scss
@@ -406,3 +406,47 @@ ul.notes {
color: $gl-link-color;
}
}
+
+.line-resolve-all {
+ padding: 10px;
+ border: 1px solid $border-color;
+ border-radius: 2px;
+
+ > .btn {
+ margin-right: 10px;
+ }
+}
+
+.line-resolve-text {
+ vertical-align: middle;
+}
+
+.line-resolve-btn {
+ position: relative;
+ top: -1px;
+ width: 14px;
+ height: 14px;
+ padding: 0;
+ background-color: transparent;
+ border: 1px solid #c3c3c3;
+ border-radius: 50%;
+ outline: 0;
+ vertical-align: middle;
+
+ &:hover,
+ &.is-active {
+ color: #fff;
+ background-color: $gl-text-green;
+ border-color: $gl-text-green;
+
+ .fa {
+ color: #fff;
+ }
+ }
+
+ .fa {
+ top: 2px;
+ font-size: 8px;
+ vertical-align: top;
+ }
+}