Resources/public/css/clickmenu.css
author cavaliet
Wed, 02 Apr 2014 14:36:28 +0200
changeset 124 c5dae4b8caa2
parent 74 901463f9b11c
permissions -rw-r--r--
merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
74
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 53
diff changeset
     1
/*
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 53
diff changeset
     2
 * This file is part of the WikiTagBundle package.
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 53
diff changeset
     3
 *
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 53
diff changeset
     4
 * (c) IRI <http://www.iri.centrepompidou.fr/>
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 53
diff changeset
     5
 *
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 53
diff changeset
     6
 * For the full copyright and license information, please view the LICENSE
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 53
diff changeset
     7
 * file that was distributed with this source code.
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 53
diff changeset
     8
 */
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 53
diff changeset
     9
53
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    10
div.cmDiv
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    11
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    12
	border: 1px solid black;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    13
	background-color: #eee;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    14
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    15
.clickMenu
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    16
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    17
	margin: 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    18
	padding: 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    19
	cursor: default;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    20
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    21
.clickMenu, .clickMenu ul
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    22
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    23
	list-style: none;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    24
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    25
.clickMenu ul
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    26
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    27
	margin: 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    28
	padding: 2px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    29
	border: 1px solid black;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    30
	background-color: #eee;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    31
	min-width: 100px; /* ie doesnt know this :/ */
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    32
	//float: left;/*ie again*/
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    33
	//width: 100%;/*and again*/
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    34
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    35
.clickMenu div.outerbox
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    36
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    37
	display: none;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    38
	min-width: 106px; /* firefox produces animation-flickering when the box is bigger than this :/ */
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    39
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    40
.clickMenu div.inner
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    41
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    42
	//top: 20px; /* for ie */
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    43
	left: 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    44
	margin: 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    45
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    46
.clickMenu div.inner div.outerbox
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    47
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    48
	margin: 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    49
	left: 98px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    50
	//left: 90px; /* for ie */
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    51
	top: -3px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    52
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    53
.clickMenu li
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    54
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    55
	position: relative;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    56
	padding: 0 20px 0 2px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    57
	/*white-space: nowrap; does not really work in ie */
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    58
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    59
.clickMenu li.main
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    60
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    61
	float: left;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    62
	padding: 0 10px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    63
	background-color: #eee;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    64
	//height: 20px; /* for ie */
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    65
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    66
.clickMenu li.main li
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    67
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    68
	z-index: 2;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    69
	min-width: 78px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    70
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    71
.clickMenu li.hover
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    72
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    73
	z-index: 1 !important; /* the hover z-index has to be below the normal one the hovering items may be drawn over a submenu */
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    74
	background-color: #aaa;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    75
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    76
.clickMenu img.liArrow
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    77
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    78
	position: absolute;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    79
	right: 5px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    80
	top: 0.41em;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    81
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    82
.clickMenu a
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    83
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    84
	text-decoration: none;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    85
	color: black;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    86
	cursor: default;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    87
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    88
/* thats for the shadowbox */
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    89
html>body div.outerbox
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    90
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    91
	padding: 0 5px 5px 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    92
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    93
html>body div.shadowbox1
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    94
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    95
	position: absolute;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    96
	right: 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    97
	bottom: 5px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    98
	width: 5px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
    99
	height: 100%;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   100
	background: url(../images/myshadow.png) no-repeat right top;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   101
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   102
html>body div.shadowbox2
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   103
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   104
	position: absolute;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   105
	bottom: 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   106
	right: 5px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   107
	height: 5px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   108
	width: 100%;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   109
	background: url(../images/myshadow.png) left bottom;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   110
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   111
html>body div.shadowbox3
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   112
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   113
	position: absolute;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   114
	bottom: 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   115
	right: 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   116
	height: 5px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   117
	width: 5px;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   118
	background: url(../images/myshadow.png) no-repeat right bottom;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   119
}
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   120
html>body .innerbox
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   121
{
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   122
	margin: 0;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   123
	display: inherit;
22377c9e2eae First step of column management in document tag list. Little debug on js for move up down.
cavaliet
parents:
diff changeset
   124
}