moodle/theme/afterburner/style/afterburner_dock.css
Mary Evans 64bf9dbc30 MDL-35217 theme_afterburner: reduce size of sideblocks in Afterburner and make into fully responsive design.
Squashed commit of the following:

commit 8871ed6a5ca3f3ecbf6d9c20ebe5a9badcfe0fef
Author: Mary Evans <lazydaisy@visible-expression.co.uk>
Date:   Sun Sep 22 14:57:18 2013 +0100

    MDL-35217 theme_afterburner: Added styles to block and course page editing icons.

    Adjusted @media styles in syyle/responsive.css.

commit 6ee5035b77f4e6fb10fc14b4d18e70ab5b8cb174
Author: Mary Evans <lazydaisy@visible-expression.co.uk>
Date:   Mon Sep 16 02:09:01 2013 +0100

    MDL-35217 theme_afterbuener: Fix for first docked block top-margin reduced to zero.

commit fc6a3fbf9267d778b8f85af0c73f6628890ccbc4
Author: Mary Evans <lazydaisy@visible-expression.co.uk>
Date:   Mon Sep 16 01:23:21 2013 +0100

    MDL-35217_M26 theme_afterburner: Improvment to make Afterburner fully responsive.

    This commit builds on the work already commited by Richard Olemann.

commit f7a750a90d40d60e965485b2a3fcb112b5e2bd80
Author: roelmann <oelmann.richard@gmail.com>
Date:   Thu Sep 12 15:55:46 2013 +0100

    wip-MDL_35217-afterburner: Reduce sidebar widths, make layout responsive, hide logo on small screens
2013-09-22 15:11:39 +01:00

127 lines
2.9 KiB
CSS

/*
Docking Module
---------------*/
#dock {
width: 30px;
position:fixed;
top: 0;
left: 0;
height: 100%;
z-index:11000;
}
#dock.nothingdocked {
visibility: hidden;
display:none;
}
#dock .dockeditem.firstdockitem {
margin-top: 0;
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topright: 6px;
border-top-right-radius: 6px;
}
#dock .dockeditem {
background-color: #ddd;
padding: 2px;
padding-left: 0px;
}
#dock .dockedtitle {
padding-bottom: 5px;
cursor:pointer;
background-color: #aaa;
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topright: 6px;
border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomright: 6px;
border-bottom-right-radius: 6px;
}
#dock .dockedtitle h2 {
margin: 0;
padding: 10px 3px;
color: #fff;
}
.dockedtitle.activeitem h2 {
color: #fff;
}
#dock .dockedtitle.activeitem {
background-color: #abc;
width: 35px;
-webkit-border-top-right-radius: 0;
-moz-border-radius-topright: 0;
border-top-right-radius: 0;
-webkit-border-bottom-right-radius: 0;
-moz-border-radius-bottomright: 0;
border-bottom-right-radius: 0;
}
#dock .controls {
bottom: auto;
background-color: #ddd;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomright: 6px;
border-bottom-right-radius: 6px;
}
#dock .controls img {
cursor:pointer;
margin-left: 10px;
}
/*
Docked Item Panel
-----------------------*/
#dockeditempanel {
width: 180px;
position: relative;
z-index: 12000;
left: 100%;
}
#dockeditempanel.dockitempanel_hidden {
display:none;
}
#dockeditempanel .dockeditempanel_content {
background-color: #fff;
margin: 0 3px;
position: relative;
min-height: 100px;
border-color: #abc;
border-style: solid;
border-width: 5px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-border-top-left-radius: 0;
-moz-border-radius-topleft: 0;
border-top-left-radius: 0;
}
#dockeditempanel .dockeditempanel_hd {
border-width: 0;
background-color: #abc;
padding: 2px;
}
#dockeditempanel .dockeditempanel_bd .block_docked {
margin:10px;
}
#dockeditempanel .block_calendar_month.block_docked {
text-align: center;
}
#dockeditempanel .dockeditempanel_hd {
border-bottom:1px dotted #aaa;
text-align: left;
}
#dockeditempanel .dockeditempanel_hd h2 {
display:inline;
margin: 0;
padding-left: 1em;
color: #fff;
}
#dockeditempanel .dockeditempanel_hd .commands {
display:inline;
}
#dockeditempanel .dockeditempanel_hd .commands img {
margin-left: 3px;
vertical-align: middle;
}
#dockeditempanel .dockeditempanel_bd {
overflow:auto;
width:auto; /* adds scroll to dock panel */
}
#dockeditempanel .dockeditempanel_bd .block_navigation .block_tree li {overflow:visible;}