MediaWiki:EditTemplates.css: Difference between revisions

From Donate
Jump to navigation Jump to search
Content deleted Content added
No edit summary
increase width, reduce list margin
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
#toolBox {
#toolBox {
position: relative;
display: inline-block;
margin-left: 12px;
position: absolute;
}
top: 160px;
left: 12px;
padding: 0 8px;


#toolLink, #toolList {
display: inline-block;
box-sizing: border-box;
padding: 4px 8px;
background-color: #fff;
background-color: #fff;
border: 1px solid #a7d7f9;
border: 1px solid #a2a9b1;
border-radius: 2px;
border-radius: 2px;

cursor: pointer;
z-index: 30;

font-size: 12px;
font-size: 12px;
line-height: 24px;
line-height: 16px;
}
color: #000;

#toolLink {
color: #36c;
width: 72px;
text-align: center;
cursor: pointer;
}
}


Line 21: Line 27:
display: none;
display: none;
position: absolute;
position: absolute;
top: 160px;
top: 0;
left: 72px;
left: 80px;


font-size: 12px;
font-size: 12px;
line-height: 16px;
line-height: 16px;


min-height: 200px;
min-width: 240px;
min-width: 200px;

padding: 8px;

background-color: #fff;
border:1px solid #a7d7f9;
border-radius: 2px;

z-index: 31;
}
}


#toolList ul {
#toolList ul {
list-style: none;
list-style: none;
margin-left: 0.8em;
}
}


@media screen and (max-width: 981px) {
@media screen and (max-width: 981px) {
#toolBox {
#toolBox {
position: absolute;
top: 12px;
top: 12px;
}
left: 12px;
#toolList {
top: 12px;
}
}
}
}

Latest revision as of 16:42, 8 February 2022

#toolBox {
	position: relative;
	margin-left: 12px;
}

#toolLink, #toolList {
	display: inline-block;
	box-sizing: border-box;
    padding: 4px 8px;
    
    background-color: #fff;
    border: 1px solid #a2a9b1;
    border-radius: 2px;
    
    font-size: 12px;
    line-height: 16px;
}

#toolLink {
	color: #36c;
	width: 72px;
	text-align: center;
	cursor: pointer;
}

#toolList {
    display: none;
    position: absolute;
    top: 0;
    left: 80px;

    font-size: 12px;
    line-height: 16px;

    min-width: 240px;
}

#toolList ul {
    list-style: none;
    margin-left: 0.8em;
}

@media screen and (max-width: 981px) {
    #toolBox {
    	position: absolute;
        top: 12px;
        left: 12px;
    }
}