mirror of https://github.com/zlatinb/muwire
css and layout changes from zzz
parent
ec5c15ff64
commit
2fadb314d3
|
@ -261,7 +261,7 @@ aside {
|
||||||
width: 24px;
|
width: 24px;
|
||||||
}
|
}
|
||||||
.menu-text {
|
.menu-text {
|
||||||
margin: 0 24px;
|
margin: 0 6px 0 12px;
|
||||||
}
|
}
|
||||||
.menubox h2 a {
|
.menubox h2 a {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
|
@ -324,6 +324,15 @@ See also .menu-icon
|
||||||
.menuitem.settings .menu-icon:before {
|
.menuitem.settings .menu-icon:before {
|
||||||
content: url("images/settings.png");
|
content: url("images/settings.png");
|
||||||
}
|
}
|
||||||
|
.menuitem.downloads .menu-icon:before {
|
||||||
|
content: url("images/inbox.png");
|
||||||
|
}
|
||||||
|
.menuitem.search .menu-icon:before {
|
||||||
|
content: url("images/delay.png");
|
||||||
|
}
|
||||||
|
.menuitem.shared .menu-icon:before {
|
||||||
|
content: url("images/folder.png");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Main content */
|
/* Main content */
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
position:relative;
|
position:relative;
|
||||||
}
|
}
|
||||||
#table-scroll {
|
#table-scroll {
|
||||||
height:150px;
|
max-height: 300px;
|
||||||
overflow:auto;
|
overflow:auto;
|
||||||
margin-top:20px;
|
margin-top:20px;
|
||||||
}
|
}
|
||||||
|
@ -23,6 +23,34 @@
|
||||||
border:1px solid red;
|
border:1px solid red;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div#activeSearches table thead th:first-child {
|
||||||
|
width: 40%;
|
||||||
|
}
|
||||||
|
div#topTable table thead th:first-child {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
div#topTable table thead th:nth-child(2) {
|
||||||
|
width: 15%;
|
||||||
|
}
|
||||||
|
div#topTable table thead th:first-child {
|
||||||
|
width: 75%;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#activeBrowses table thead th:first-child {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#filesTable table thead th:first-child {
|
||||||
|
width: 70%;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#trustedUsers table thead th:first-child {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
div#trustLists table thead th:first-child {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
/* File tree CSS */
|
/* File tree CSS */
|
||||||
|
|
||||||
/* Remove default bullets */
|
/* Remove default bullets */
|
||||||
|
|
|
@ -18,7 +18,9 @@
|
||||||
%>
|
%>
|
||||||
|
|
||||||
<noscript>
|
<noscript>
|
||||||
|
<div class="warning">
|
||||||
<center><b><%=Util._t("MuWire requires JavaScript. Please enable JavaScript in your browser.")%></b></center>
|
<center><b><%=Util._t("MuWire requires JavaScript. Please enable JavaScript in your browser.")%></b></center>
|
||||||
|
</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
<p><%=Util._t("Welcome to MuWire! Please select a nickname and download locations")%></p>
|
<p><%=Util._t("Welcome to MuWire! Please select a nickname and download locations")%></p>
|
||||||
<form action="/MuWire/init" method="post">
|
<form action="/MuWire/init" method="post">
|
||||||
|
|
|
@ -13,5 +13,7 @@
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<noscript>
|
<noscript>
|
||||||
|
<div class="warning">
|
||||||
<center><b><%=Util._t("MuWire requires JavaScript. Please enable JavaScript in your browser.")%></b></center>
|
<center><b><%=Util._t("MuWire requires JavaScript. Please enable JavaScript in your browser.")%></b></center>
|
||||||
|
</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
|
|
@ -5,21 +5,53 @@
|
||||||
<div class="menu-icon" id="connectionsIcon">
|
<div class="menu-icon" id="connectionsIcon">
|
||||||
<img src="images/not_started.png" alt="">
|
<img src="images/not_started.png" alt="">
|
||||||
</div>
|
</div>
|
||||||
<%=Util._t("Connections")%>: <span id="connectionsCount">0</span>
|
<div class="menu-text">
|
||||||
|
<%=Util._t("Connections")%>: <span id="connectionsCount">0</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="menubox-divider"></div>
|
<div class="menubox-divider"></div>
|
||||||
<div class="menubox">
|
<div class="menubox">
|
||||||
<h2><%=Util._t("Pages")%></h2>
|
<h2><%=Util._t("Pages")%></h2>
|
||||||
<a class="menuitem" href="Downloads"><%=Util._t("Downloads")%></a>
|
<a class="menuitem downloads" href="Downloads">
|
||||||
<a class="menuitem" href="Home"><%=Util._t("Search")%></a>
|
<div class="menu-icon"></div>
|
||||||
<a class="menuitem" href="SharedFiles"><%=Util._t("Shared Files")%></a>
|
<div class="menu-text">
|
||||||
<a class="menuitem" href="BrowseHost"><%=Util._t("Browse")%></a>
|
<%=Util._t("Downloads")%>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a class="menuitem search" href="Home">
|
||||||
|
<div class="menu-icon"></div>
|
||||||
|
<div class="menu-text">
|
||||||
|
<%=Util._t("Search")%>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a class="menuitem shared" href="SharedFiles">
|
||||||
|
<div class="menu-icon"></div>
|
||||||
|
<div class="menu-text">
|
||||||
|
<%=Util._t("Shared Files")%>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a class="menuitem shared" href="BrowseHost">
|
||||||
|
<div class="menu-icon"></div>
|
||||||
|
<div class="menu-text">
|
||||||
|
<%=Util._t("Browse")%>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="menubox">
|
<div class="menubox">
|
||||||
<h2><%=Util._t("Trust")%></h2>
|
<h2><%=Util._t("Trust")%></h2>
|
||||||
<a class="menuitem" href="TrustUsers"><%=Util._t("Users")%></a>
|
<a class="menuitem identities" href="TrustUsers">
|
||||||
<a class="menuitem" href="TrustLists"><%=Util._t("Lists")%></a>
|
<div class="menu-icon"></div>
|
||||||
|
<div class="menu-text">
|
||||||
|
<%=Util._t("Users")%>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a class="menuitem address-book" href="TrustLists">
|
||||||
|
<div class="menu-icon"></div>
|
||||||
|
<div class="menu-text">
|
||||||
|
<%=Util._t("Lists")%>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="menubox-divider"></div>
|
<div class="menubox-divider"></div>
|
||||||
<div class="menubox">
|
<div class="menubox">
|
||||||
|
|
Loading…
Reference in New Issue