Tenderfoot improvements
This commit is contained in:
parent
43523ab9cf
commit
06b792deed
13 changed files with 41 additions and 25 deletions
|
@ -246,17 +246,17 @@ ul.visible {
|
||||||
position:relative;
|
position:relative;
|
||||||
top:-2px;
|
top:-2px;
|
||||||
}
|
}
|
||||||
.progress, .progress div {
|
.capability-progress, .capability-progress div {
|
||||||
height:10px;
|
height:10px;
|
||||||
margin-bottom:-10px;
|
margin-bottom:-10px;
|
||||||
}
|
}
|
||||||
.progress {
|
.capability-progress {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
top:0px;
|
top:0px;
|
||||||
left:0px;
|
left:0px;
|
||||||
width:100%;
|
width:100%;
|
||||||
}
|
}
|
||||||
.progress div {
|
.capability-progress div {
|
||||||
background-color:#9999FF;
|
background-color:#9999FF;
|
||||||
width:0%;
|
width:0%;
|
||||||
white-space:nowrap;
|
white-space:nowrap;
|
||||||
|
@ -268,7 +268,7 @@ hr {
|
||||||
background:#efefef;
|
background:#efefef;
|
||||||
}
|
}
|
||||||
.tabs {
|
.tabs {
|
||||||
width: auto;
|
width: 300px;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
border: 0;
|
border: 0;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
|
|
|
@ -1009,7 +1009,7 @@ var unhide = function() {
|
||||||
$("#resetButton").removeAttr("disabled");
|
$("#resetButton").removeAttr("disabled");
|
||||||
if ($(window).width() > 1230) {
|
if ($(window).width() > 1230) {
|
||||||
$("#container").css("box-shadow", "0px 0px 20px -6px #000000");
|
$("#container").css("box-shadow", "0px 0px 20px -6px #000000");
|
||||||
$("#container").animate({"height" : "600px", "width" : "1200px", "margin-left" : "-130px"}, 500);
|
$("#container").animate({"height" : "600px", "width" : "1200px", "margin-bottom" : "20px", "margin-left" : (($("#main-content").width() - 1200) / 2) + "px"}, 500);
|
||||||
$("#center-container").css("width", "900px");
|
$("#center-container").css("width", "900px");
|
||||||
} else {
|
} else {
|
||||||
$("#container").animate({"height" : "600px"});
|
$("#container").animate({"height" : "600px"});
|
||||||
|
|
|
@ -112,7 +112,7 @@ ${stylesheets.add(
|
||||||
<div id="center-container">
|
<div id="center-container">
|
||||||
<div id="log"></div>
|
<div id="log"></div>
|
||||||
<div id="infovis"></div>
|
<div id="infovis"></div>
|
||||||
<div class="progress"><div id="progressbar"></div></div>
|
<div class="capability-progress"><div id="progressbar"></div></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="right-container">
|
<div id="right-container">
|
||||||
|
|
|
@ -77,13 +77,19 @@ article.property li h3 {
|
||||||
}
|
}
|
||||||
|
|
||||||
#individual-intro span.display-title {
|
#individual-intro span.display-title {
|
||||||
padding-left: 10px;
|
padding-left: 0px;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#individual-intro span.display-title, h1.fn .display-title {
|
#individual-intro h1.foaf-person span.display-title {
|
||||||
font-size: .825em;
|
font-size: .825em;
|
||||||
border-left: 1px solid #a6b1b0;
|
border-left: 1px solid #a6b1b0;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#individual-intro h2 {
|
||||||
|
clear: both;
|
||||||
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul#individual-hasResearchArea li,
|
ul#individual-hasResearchArea li,
|
||||||
|
|
|
@ -278,3 +278,24 @@ h5 {
|
||||||
font-size: .875em;
|
font-size: .875em;
|
||||||
color: #064d68;
|
color: #064d68;
|
||||||
}
|
}
|
||||||
|
label {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
#developerPanel h1 {
|
||||||
|
line-height: 1.5em;
|
||||||
|
}
|
||||||
|
#developerPanel .container {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.classHierarchy {
|
||||||
|
min-width: auto;
|
||||||
|
max-width: none;
|
||||||
|
display: block;
|
||||||
|
margin-right: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
section#container div {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 135 B |
BIN
webapp/src/main/webapp/themes/tenderfoot/images/arrow.gif
Normal file
BIN
webapp/src/main/webapp/themes/tenderfoot/images/arrow.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 294 B |
Binary file not shown.
After Width: | Height: | Size: 175 B |
Binary file not shown.
After Width: | Height: | Size: 56 B |
BIN
webapp/src/main/webapp/themes/tenderfoot/images/arrowSmall.gif
Normal file
BIN
webapp/src/main/webapp/themes/tenderfoot/images/arrowSmall.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 281 B |
|
@ -82,7 +82,6 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row person-details">
|
<div class="row person-details">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<#include "individual-adminPanel.ftl">
|
|
||||||
<!-- Positions -->
|
<!-- Positions -->
|
||||||
<#include "individual-positions.ftl">
|
<#include "individual-positions.ftl">
|
||||||
<!-- Research Areas -->
|
<!-- Research Areas -->
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
<header id="branding" role="banner">
|
<header id="branding" role="banner">
|
||||||
<#include "identity.ftl">
|
<#include "identity.ftl">
|
||||||
</header>
|
</header>
|
||||||
|
<#include "developer.ftl">
|
||||||
<#include "menu.ftl">
|
<#include "menu.ftl">
|
||||||
<#include "message.ftl">
|
<#include "message.ftl">
|
||||||
<div class="row hero">
|
<div class="row hero">
|
||||||
|
|
|
@ -12,22 +12,11 @@
|
||||||
<header id="branding" role="banner" -->
|
<header id="branding" role="banner" -->
|
||||||
<#include "identity.ftl">
|
<#include "identity.ftl">
|
||||||
</header>
|
</header>
|
||||||
|
<#include "developer.ftl">
|
||||||
<#include "menu.ftl">
|
<#include "menu.ftl">
|
||||||
<#include "message.ftl">
|
<#include "message.ftl">
|
||||||
|
|
||||||
<div id="wrapper-content" role="main" class="container">
|
<div id="wrapper-content" role="main" class="container">
|
||||||
<#if flash?has_content>
|
|
||||||
<#if flash?starts_with(i18n().menu_welcomestart) >
|
|
||||||
<section id="welcome-msg-container" role="container">
|
|
||||||
<section id="welcome-message" role="alert">${flash}</section>
|
|
||||||
</section>
|
|
||||||
<#else>
|
|
||||||
<section id="flash-message" role="alert">
|
|
||||||
${flash}
|
|
||||||
</section>
|
|
||||||
</#if>
|
|
||||||
</#if>
|
|
||||||
|
|
||||||
<!--[if lte IE 8]>
|
<!--[if lte IE 8]>
|
||||||
<noscript>
|
<noscript>
|
||||||
<p class="ie-alert">This site uses HTML elements that are not recognized by Internet Explorer 8 and below in the absence of JavaScript. As a result, the site will not be rendered appropriately. To correct this, please either enable JavaScript, upgrade to Internet Explorer 9, or use another browser. Here are the <a href="http://www.enable-javascript.com" title="java script instructions">instructions for enabling JavaScript in your web browser</a>.</p>
|
<p class="ie-alert">This site uses HTML elements that are not recognized by Internet Explorer 8 and below in the absence of JavaScript. As a result, the site will not be rendered appropriately. To correct this, please either enable JavaScript, upgrade to Internet Explorer 9, or use another browser. Here are the <a href="http://www.enable-javascript.com" title="java script instructions">instructions for enabling JavaScript in your web browser</a>.</p>
|
||||||
|
|
Loading…
Add table
Reference in a new issue