summaryrefslogtreecommitdiff
path: root/widgets/github_pr/github_pr.scss
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/github_pr/github_pr.scss')
-rw-r--r--widgets/github_pr/github_pr.scss57
1 files changed, 57 insertions, 0 deletions
diff --git a/widgets/github_pr/github_pr.scss b/widgets/github_pr/github_pr.scss
new file mode 100644
index 0000000..e4ad010
--- /dev/null
+++ b/widgets/github_pr/github_pr.scss
@@ -0,0 +1,57 @@
+// ----------------------------------------------------------------------------
+// Sass declarations
+// ----------------------------------------------------------------------------
+$background-color: #178CA6;
+$value-color: #fff;
+
+$title-color: #fff;
+$label-color: rgba(255, 255, 255, 0.7);
+$moreinfo-color: rgba(255, 255, 255, 0.7);
+
+// ----------------------------------------------------------------------------
+// Widget-github_pr styles
+// ----------------------------------------------------------------------------
+.widget-github-pr {
+
+ background-color: $background-color;
+ vertical-align: top;
+
+ .title {
+ color: $title-color;
+ }
+
+ ol, ul {
+ margin: 0 15px;
+ text-align: left;
+ color: $label-color;
+ }
+
+ ol {
+ list-style-position: inside;
+ }
+
+ li {
+ margin-bottom: 5px;
+ }
+
+ .github_pr-nostyle {
+ list-style: none;
+ }
+
+ .label-link {
+ color: $value-color;
+
+ &:hover {
+ color: rgba(255, 255, 255, 0.7);
+ }
+ }
+
+ .updated-at {
+ color: rgba(0, 0, 0, 0.3);
+ }
+
+ .more-info {
+ color: $moreinfo-color;
+ }
+
+}