]> source.dussan.org Git - redmine.git/commitdiff
Style contextual buttons (#19097).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 7 Nov 2015 13:40:19 +0000 (13:40 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 7 Nov 2015 13:40:19 +0000 (13:40 +0000)
Patch by Felix Gliesche.

git-svn-id: http://svn.redmine.org/redmine/trunk@14820 e93f8b46-1217-0410-a6f0-8f06a7374b81

public/stylesheets/responsive.css

index 28b5d02613f4b60414f09861e93ecf7cbe86aee0..087581421ff53483f7332b05de84509da3406095 100644 (file)
@@ -11,6 +11,7 @@
     B) HEADER & TOP MENUS
     C) MAIN CONTENT & SIDEBAR
     D) TOGGLE BUTTON & FLYOUT MENU
+    E) UX ELEMENTS
 
 */
 
 
         background-position: 8px 50%;
     }
+
+    /*----------------------------------------*\
+        E) UX ELEMENTS
+    \*----------------------------------------*/
+
+    /* Contextual Buttons */
+
+    .contextual
+    {
+        width: 100%;
+        margin-bottom: .5em;
+        padding-left: 0; /* reset left padding in order to use whole space */
+
+        white-space: normal;
+
+        color: transparent;
+    }
+
+    .contextual a,
+    p.buttons a
+    {
+        font-weight: bold;
+
+        display: inline-block;
+
+        margin: 5px 0;
+        margin-right: 2px;
+        padding: 9px 9px 9px 9px;
+
+        border: 1px solid #ddd;
+        -webkit-border-radius: 3px;
+                border-radius: 3px;
+        background-color: transparent;
+        background-position-x: 4px;
+    }
+
+    .contextual a.icon,
+    p.buttons a.icon
+    {
+        padding-left: 25px;
+    }
+
+    .flyout-menu .contextual
+    {
+        float: none;
+    }
+
+    #issue_tree .contextual a,
+    #relations .contextual a
+    {
+        float: right;
+    }
 }