summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/editor.scss
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-06 21:40:23 -0800
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-06 21:40:23 -0800
commit887cf5c7101c058d30b10d767c186d548e6c5e92 (patch)
tree6b5755b87506421de9b50e45e09562bfff50991e /app/assets/stylesheets/pages/editor.scss
parentceb8f9dfeb77c99dfac121fb349ee3c8a9969ae9 (diff)
downloadgitlab-ce-887cf5c7101c058d30b10d767c186d548e6c5e92.tar.gz
Better name for pages css dir
Diffstat (limited to 'app/assets/stylesheets/pages/editor.scss')
-rw-r--r--app/assets/stylesheets/pages/editor.scss56
1 files changed, 56 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/editor.scss b/app/assets/stylesheets/pages/editor.scss
new file mode 100644
index 00000000000..88aa256e56e
--- /dev/null
+++ b/app/assets/stylesheets/pages/editor.scss
@@ -0,0 +1,56 @@
+.file-editor {
+ #editor{
+ border: none;
+ @include border-radius(0);
+ height: 500px;
+ margin: 0;
+ padding: 0;
+ position: relative;
+ width: 100%;
+ }
+
+ .cancel-btn {
+ color: #B94A48;
+ &:hover {
+ color: #B94A48;
+ }
+ }
+ .commit-button-annotation {
+ @extend .alert;
+ @extend .alert-info;
+ display: inline-block;
+ margin: 0;
+ padding: 2px;
+
+ > * {
+ float: left;
+ }
+
+ .message {
+ display: inline-block;
+ margin: 5px 8px 0 8px;
+ }
+ }
+
+ .file-title {
+ @extend .monospace;
+ font-size: 14px;
+ padding: 5px;
+ }
+
+ .editor-ref {
+ background: #f5f5f5;
+ padding: 11px 15px;
+ border-right: 1px solid #CCC;
+ display: inline-block;
+ margin: -5px -5px;
+ margin-right: 10px;
+ }
+
+ .editor-file-name {
+ .new-file-name {
+ display: inline-block;
+ width: 200px;
+ }
+ }
+}