Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskv-headless <skv-headless@yandex.ru>2014-02-25 17:54:30 +0400
committerskv-headless <skv-headless@yandex.ru>2014-02-25 18:23:23 +0400
commit2c28dbd2547d77054b0a080af6b0dfec674ad799 (patch)
treeac02f4d1536b1a59c8f38872eb08bfe57d224f20 /app/assets/stylesheets
parent5f31caa0ed88b0d779336d909dc7f48b9f86cd25 (diff)
commit description in commit list
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/sections/commits.scss32
1 files changed, 32 insertions, 0 deletions
diff --git a/app/assets/stylesheets/sections/commits.scss b/app/assets/stylesheets/sections/commits.scss
index 78c268f60ea..03a545de6fa 100644
--- a/app/assets/stylesheets/sections/commits.scss
+++ b/app/assets/stylesheets/sections/commits.scss
@@ -168,6 +168,32 @@ li.commit {
text-decoration: underline;
}
}
+
+ .text-expander {
+ background: #ddd;
+ color: #555;
+ padding: 0 5px;
+ line-height: 6px;
+ height: 12px;
+ font-size: 12px;
+ font-weight: bold;
+ vertical-align: middle;
+ display: inline-block;
+ border-radius: 1px;
+ text-decoration: none;
+ cursor: pointer;
+ &:hover {
+ background-color: #ccc;
+ }
+ }
+ }
+
+ .commit-row-description {
+ font-size: 14px;
+ border-left: 1px solid #e5e5e5;
+ padding: 0 15px 0 7px;
+ margin: 5px 0 10px 5px;
+ display: none;
}
.commit-row-info {
@@ -192,4 +218,10 @@ li.commit {
@extend .cgray;
}
}
+
+ &.open {
+ .commit-row-description {
+ display: block;
+ }
+ }
}