Initial Commit
BIN
war/WEB-INF/lib/aopalliance.jar
Normal file
BIN
war/WEB-INF/lib/args4j-2.0.21.jar
Normal file
BIN
war/WEB-INF/lib/bonecp-0.7.1.RELEASE.jar
Normal file
BIN
war/WEB-INF/lib/gin-2.0.jar
Normal file
BIN
war/WEB-INF/lib/google-api-client-1.11.0-beta.jar
Normal file
@ -0,0 +1 @@
|
||||
src=../libs-sources/google-api-client-1.11.0-beta-sources.jar
|
BIN
war/WEB-INF/lib/google-http-client-1.11.0-beta.jar
Normal file
@ -0,0 +1 @@
|
||||
src=../libs-sources/google-http-client-1.11.0-beta-sources.jar
|
BIN
war/WEB-INF/lib/google-http-client-jackson2-1.11.0-beta.jar
Normal file
@ -0,0 +1 @@
|
||||
src=../libs-sources/google-http-client-jackson2-1.11.0-beta-sources.jar
|
BIN
war/WEB-INF/lib/google-oauth-client-1.11.0-beta.jar
Normal file
@ -0,0 +1 @@
|
||||
src=../libs-sources/google-oauth-client-1.11.0-beta-sources.jar
|
BIN
war/WEB-INF/lib/google-oauth-client-servlet-1.11.0-beta.jar
Normal file
BIN
war/WEB-INF/lib/guava-13.0.1.jar
Normal file
BIN
war/WEB-INF/lib/guava-gwt-13.0.1.jar
Normal file
BIN
war/WEB-INF/lib/guice-3.0.jar
Normal file
BIN
war/WEB-INF/lib/guice-assistedinject-3.0.jar
Normal file
BIN
war/WEB-INF/lib/guice-servlet-3.0.jar
Normal file
BIN
war/WEB-INF/lib/gwt-bootstrap-2.1.1.0-SNAPSHOT-javadoc.jar
Normal file
BIN
war/WEB-INF/lib/gwt-bootstrap-2.1.1.0-SNAPSHOT-sources.jar
Normal file
BIN
war/WEB-INF/lib/gwt-bootstrap-2.1.1.0-SNAPSHOT.jar
Normal file
BIN
war/WEB-INF/lib/gwt-cal-0.9.3.jar
Normal file
BIN
war/WEB-INF/lib/gwt-dev.jar
Normal file
BIN
war/WEB-INF/lib/gwt-dnd-3.1.2.jar
Normal file
BIN
war/WEB-INF/lib/gwt-maps-3.8.0-pre1.zip
Normal file
BIN
war/WEB-INF/lib/gwt-maps.jar
Normal file
BIN
war/WEB-INF/lib/gwt-servlet.jar
Normal file
BIN
war/WEB-INF/lib/gwt-user.jar
Normal file
BIN
war/WEB-INF/lib/jackson-core-2.0.5.jar
Normal file
1
war/WEB-INF/lib/jackson-core-2.0.5.jar.properties
Normal file
@ -0,0 +1 @@
|
||||
src=../libs-sources/jackson-core-2.0.5-sources.jar
|
BIN
war/WEB-INF/lib/javax.inject.jar
Normal file
BIN
war/WEB-INF/lib/jdo2-api-2.3-eb.jar
Normal file
BIN
war/WEB-INF/lib/jsr305-1.3.9.jar
Normal file
BIN
war/WEB-INF/lib/mail.jar
Normal file
BIN
war/WEB-INF/lib/mongo-2.9.0.jar
Normal file
BIN
war/WEB-INF/lib/mysql-connector-java-5.1.22-bin.jar
Normal file
BIN
war/WEB-INF/lib/servlet-api-3.0.jar
Normal file
BIN
war/WEB-INF/lib/slf4j-api-1.7.1.jar
Normal file
BIN
war/WEB-INF/lib/slf4j-simple-1.7.1.jar
Normal file
BIN
war/WEB-INF/lib/transaction-api-1.1.jar
Normal file
BIN
war/WEB-INF/lib/xpp3-1.1.4c.jar
Normal file
32
war/WEB-INF/web.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
|
||||
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
||||
version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
|
||||
|
||||
<filter>
|
||||
<filter-name>guiceFilter</filter-name>
|
||||
<filter-class>com.google.inject.servlet.GuiceFilter</filter-class>
|
||||
</filter>
|
||||
|
||||
<filter-mapping>
|
||||
<filter-name>guiceFilter</filter-name>
|
||||
<url-pattern>/*</url-pattern>
|
||||
</filter-mapping>
|
||||
|
||||
<listener>
|
||||
<listener-class>com.biomed.server.BiomedGuiceServletContextListener
|
||||
</listener-class>
|
||||
</listener>
|
||||
|
||||
|
||||
<!-- Default page to serve -->
|
||||
<welcome-file-list>
|
||||
<welcome-file>index.html</welcome-file>
|
||||
</welcome-file-list>
|
||||
|
||||
<mime-mapping>
|
||||
<extension>ttf</extension>
|
||||
<mime-type>application/x-font-ttf</mime-type>
|
||||
</mime-mapping>
|
||||
</web-app>
|
295
war/index.html
Normal file
@ -0,0 +1,295 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<title>Atlantic Biomedical</title>
|
||||
<style type="text/css">
|
||||
#loading {
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin: -75px -75px;
|
||||
}
|
||||
|
||||
.loading1 {
|
||||
position: absolute;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
margin: 0 auto;
|
||||
border-radius: 150px;
|
||||
box-shadow: inset 0 0 10px #777;
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
.loading2 {
|
||||
border: 5px solid #555;
|
||||
width: 140px;
|
||||
height: 140px;
|
||||
position: absolute;
|
||||
border-radius: 140px;
|
||||
border-left: 5px solid transparent;
|
||||
border-right: 5px solid transparent;
|
||||
-webkit-animation: spin 1s infinite linear;
|
||||
}
|
||||
|
||||
.loading3 {
|
||||
position: absolute;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
left: 24px;
|
||||
top: 23px;
|
||||
}
|
||||
|
||||
@-webkit-keyframes spin {
|
||||
0% { -webkit-transform:rotate(0deg); }
|
||||
100% { -webkit-transform:rotate(360deg); }
|
||||
}
|
||||
|
||||
</style>
|
||||
<link href="resources/css/styles.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript" language="javascript" src="biomed/biomed.nocache.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="loading">
|
||||
<div class="loading1"></div>
|
||||
<div class="loading2"></div>
|
||||
<div class="loading3">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="100px" height="100px" viewBox="0 0 288 288" enable-background="new 0 0 288 288" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#9F9FA3" d="M158.914,146.609c0,0.379-0.638,0.69-1.424,0.69c-0.779,0-1.414-0.312-1.414-0.69
|
||||
c0-0.384,0.635-0.693,1.414-0.693C158.276,145.916,158.914,146.226,158.914,146.609z"/>
|
||||
<path fill="#9F9FA3" d="M132.141,146.609c0,0.379-0.636,0.69-1.42,0.69c-0.782,0-1.415-0.312-1.415-0.69
|
||||
c0-0.384,0.632-0.693,1.415-0.693C131.505,145.916,132.141,146.226,132.141,146.609z"/>
|
||||
<path fill="#9F9FA3" d="M113.115,229.17c-0.425-0.42-0.951-0.64-1.541-0.64c-0.212,0-0.432,0.03-0.656,0.091
|
||||
c-19.679,5.186-35.781,8.273-50.667,9.691c-5.925,0.563-10.75,0.828-15.189,0.828c-10.062,0-18.435-1.389-25.616-4.242
|
||||
c-7.557-2.997-14.92-9.479-12.925-18.679c1.904-8.756,8.11-16.388,14.295-23.461c3.325-3.792,6.988-7.572,11.161-11.54
|
||||
c0.821,0.383,1.729,0.603,2.695,0.603c3.581,0,6.477-2.899,6.477-6.477c0-0.735-0.147-1.428-0.372-2.085
|
||||
c0.215-0.188,0.42-0.372,0.642-0.561c2.808-2.421,7.275-6.14,10.613-8.654c0.699-0.521,1.155-1.378,1.168-2.14
|
||||
c0.022-0.606-0.213-1.152-0.705-1.576c-11.365-9.458-21.643-20.008-30.543-31.374c-7.637-9.747-16.264-23.603-13.979-34.252
|
||||
c0.948-4.455,3.799-7.955,8.468-10.411c6.325-3.335,14.191-3.798,21.21-3.805c7.14,0,14.893,0.778,24.413,2.461
|
||||
c10.435,1.843,20.196,4.217,28.997,7.056c0.258,0.081,0.51,0.125,0.752,0.125c0.93,0,1.698-0.608,2.031-1.592
|
||||
c0.097-0.316,0.288-1.139-0.13-1.951c-0.28-0.541-0.757-0.933-1.385-1.136c-13.536-4.363-27.717-7.373-42.155-8.948
|
||||
c-4.753-0.522-9.218-0.779-13.259-0.779c-19.071,0-30.321,5.773-33.43,17.169c-2.195,8.031,1.173,16.457,3.896,22.087
|
||||
c4.215,8.746,10.308,16.438,15.712,22.811c7.484,8.798,15.563,16.926,24.003,24.144c-0.337,0.318-1.375,1.211-3.032,2.641
|
||||
c-1.63,1.397-3.729,3.199-6.061,5.241c-0.978-0.59-2.105-0.951-3.332-0.951c-3.583,0-6.479,2.903-6.479,6.481
|
||||
c0,0.976,0.229,1.893,0.617,2.721c-4.017,3.723-7.95,7.558-10.929,10.905c-5.844,6.553-12.223,14.497-15.298,23.759
|
||||
c-2.724,8.224-0.538,15.608,6.325,21.354c10.396,8.695,25.288,9.703,35.59,9.703c2.478,0,4.933-0.071,7.339-0.167
|
||||
c21.698-0.897,42.675-5.776,60.354-10.441c0.808-0.223,1.374-0.76,1.586-1.534C114.002,230.798,113.741,229.807,113.115,229.17z"
|
||||
/>
|
||||
<path fill="#9F9FA3" d="M277.395,198.954c-8.682-12.362-20.842-24.478-37.192-37.04l0.417-0.396
|
||||
c12.816-12.111,22.792-22.502,28.074-29.249c16.996-21.686,20.337-37.905,9.941-48.226c-5.828-5.778-14.773-7.293-20.986-7.927
|
||||
c-2.496-0.256-5.156-0.384-7.914-0.384c-7.102,0-13.879,0.829-19.554,1.65c-12.224,1.753-24.078,4.469-35.23,8.065
|
||||
c-0.766,0.245-1.317,0.787-1.532,1.51c-0.154,0.492-0.146,1.063,0.028,1.577c0.315,0.978,1.095,1.586,2.028,1.586
|
||||
c0.236,0,0.488-0.039,0.749-0.115c13.992-4.511,28.188-7.509,42.196-8.912c4.182-0.417,8.116-0.634,11.694-0.634
|
||||
c11.833,0,20.267,2.3,25.063,6.83c3.227,3.058,4.756,7.174,4.522,12.238c-0.315,7.116-4.083,14.081-7.728,19.959
|
||||
c-3.813,6.16-8.548,12.246-15.338,19.739c-7.263,7.981-14.614,15.083-21.861,21.115c-0.465,0.4-0.707,0.938-0.696,1.55
|
||||
c0.019,0.775,0.473,1.615,1.168,2.151c11.272,8.466,22.806,19.106,31.642,29.188c6.131,7.004,12.069,14.698,13.969,23.44
|
||||
c2.426,11.157-9.838,16.965-13.646,18.479c-6.74,2.685-14.774,3.983-24.544,3.983c-4.504,0-9.327-0.254-15.635-0.822
|
||||
c-3.274-0.296-6.509-0.698-9.721-1.139c-0.604-2.748-3.049-4.813-5.977-4.813c-2.247,0-4.194,1.227-5.253,3.036
|
||||
c-11.001-2.005-21.213-4.537-29.715-6.776c-0.226-0.061-0.443-0.091-0.662-0.091c-0.587,0-1.11,0.22-1.534,0.64
|
||||
c-0.626,0.625-0.886,1.619-0.663,2.475c0.203,0.762,0.765,1.305,1.602,1.534c11.011,2.9,20.951,5.134,30.32,6.823
|
||||
c0.678,2.64,3.051,4.598,5.905,4.598c2.168,0,4.059-1.129,5.146-2.825c2.901,0.405,5.773,0.772,8.605,1.066
|
||||
c4.083,0.433,10.285,1.007,16.89,1.007c9.425,0,17.471-1.133,24.576-3.456c4.142-1.351,17.774-6.685,19.231-18.4
|
||||
C286.809,213.613,281.84,205.272,277.395,198.954z"/>
|
||||
<path fill="#9F9FA3" d="M187.846,83.984l-0.015-0.103c-2.532-13.055-6.399-26.121-11.499-38.817
|
||||
c-1.065-2.644-2.215-5.354-3.447-8.038c1.094-1.16,1.775-2.714,1.775-4.433c0-3.576-2.898-6.48-6.481-6.48
|
||||
c-0.337,0-0.669,0.049-0.996,0.101c-5.974-9.652-13.693-17.094-24.041-17.094c-0.286,0-0.58,0.011-0.871,0.024
|
||||
c-6.657,0.264-13.06,4.192-19.024,11.656c-6.356,7.955-10.504,17.312-13.724,25.41c-4.843,12.179-8.555,24.851-11.036,37.67
|
||||
c-0.129,0.654-0.005,1.283,0.346,1.813c0.379,0.559,1.011,0.96,1.688,1.094c0.154,0.028,0.331,0.044,0.514,0.044
|
||||
c1.042,0,1.815-0.656,2.013-1.713c2.528-13.052,6.389-26.09,11.481-38.761c3.222-8.048,13.03-32.52,28.397-32.52
|
||||
c1.684,0,3.418,0.291,5.153,0.872c6.564,2.21,11.39,8.617,14.886,14.072c-0.786,1.071-1.264,2.382-1.264,3.812
|
||||
c0,3.574,2.903,6.478,6.478,6.478l0.425-0.044c1.946,4.113,3.831,8.731,5.779,14.155c3.904,10.882,6.895,21.626,8.886,31.925
|
||||
c0.2,1.069,0.978,1.725,2.009,1.725c0.189,0,0.365-0.017,0.511-0.044c1.011-0.203,2.092-1.037,2.092-2.407L187.846,83.984z"/>
|
||||
<path fill="#9F9FA3" d="M250.074,121.546c-0.264-0.755-0.799-1.269-1.646-1.559l-14.713-5.13
|
||||
c-6.526-2.269-12.816-5.117-18.908-7.878l-4.218-1.907l-2.989-1.342c-5.254-2.359-10.688-4.805-16.117-6.983l-0.813-0.329
|
||||
c-5.84-2.353-11.884-4.787-18.206-4.718c-3.646,0.041-7.395,1.62-10.04,4.234c-2.42,2.385-3.647,6.161-3.647,11.219l0.025,1.086
|
||||
c0.046,1.743,0.08,2.896-1.64,4.811c-1.75,1.959-3.9,3.342-6.037,3.908l-1.174,0.313l0.099-7.138l0.011-2.747l-0.029-0.251
|
||||
l-0.08-0.664l0.479-0.315c3.332-2.215,5.365-5.816,5.438-9.635c0.128-6.676-5.495-12.215-12.541-12.359
|
||||
c-7.05-0.136-12.893,5.176-13.031,11.846v0.228c0,3.013,1.185,5.912,3.336,8.15c0.93,0.967,2.04,1.789,3.293,2.45l0.485,0.247
|
||||
l0.198,10.316l-2.042-0.231c-3.279-0.213-6.322-3.454-7.938-6.171l-0.345-0.591l0.062-0.333c0.176-0.989,0.261-1.817,0.261-2.618
|
||||
c0-0.727-0.051-1.475-0.151-2.292l-0.068-0.996c-0.05-0.977-0.103-2.059-0.516-3.189l-0.115-0.28l-0.128-0.39
|
||||
c-0.187-0.609-0.435-1.418-1.041-2.217c-8.101-10.636-21.986-4.769-31.211-0.842v0.136l-0.339,0.006
|
||||
c-0.181,0.085-1.856,0.793-1.856,0.793c-4.485,1.905-8.987,3.999-13.337,6.017c-4.309,2.006-8.762,4.075-13.213,5.967
|
||||
c-6.983,2.971-14.27,5.46-21.323,7.866l-6.305,2.161c-1.266,0.447-1.774,1.787-1.774,3.001c0,0.393,0.051,0.77,0.152,1.098
|
||||
c0.646,2.176,2.161,4.058,3.947,4.918c1.206,0.586,2.626,0.959,3.618,0.959h0.056l0.047,0.011c0.785,0.084,1.183,0.885,1.74,2.195
|
||||
l0.157,0.358c0.516,0.933,1.022,1.533,1.641,1.956c2.179,1.474,4.992,1.688,8.181,1.802l2.979,0.009l0.425-0.025
|
||||
c0.79-0.06,1.878-0.143,2.604,0.496c0.461,0.405,0.579,0.982,0.666,1.411l0.076,0.322c0.142,0.376,0.354,0.709,0.692,1.086
|
||||
c1.116,1.258,2.839,2.102,5.262,2.564c1.085,0.208,2.254,0.346,3.462,0.403c1.745,0.08,3.23,0.055,4.667-0.086l0.177-0.037
|
||||
l0.948-0.201l0.121,0.96l0.023,0.121l0.005,0.053l0.061,0.613c0.365,3.627,5.78,4.195,8.917,3.958
|
||||
c1.148-0.088,2.131-0.21,3.003-0.377c1.325-0.254,2.476-0.618,3.408-1.081l1.611-0.788l0.388,0.972
|
||||
c0.189,0.462,0.497,0.868,0.899,1.169c2.134,1.592,4.714,1.435,7.227,1.231l0.002-0.029l0.226,0.011l0.139,0.003v0.008
|
||||
l2.007-0.132l-0.78,1.446c-1.737,3.416-1.89,7.176-0.414,10.316c1.035,2.306,1.422,2.812,3.351,4.933
|
||||
c1.759,1.796,4.185,3.458,6.306,4.298c1.386,0.551,4.399,1.757,5.996,2.176c0,0-3.654,3.803-4.727,6.246
|
||||
c-0.557,1.27-0.69,2.711-0.69,4.152c0,0.874,0.086,1.757,0.255,2.635c0.862,4.477,3.886,8.908,8.094,11.851
|
||||
c0.791,0.549,1.642,1.084,2.694,1.677l1.168,0.652l-1.036,0.859c-2.625,2.188-4.121,5.359-4.195,8.934v0.269
|
||||
c0,3.699,1.532,7.195,4.237,9.634c0.935,0.867,1.941,1.646,3.076,2.371l0.841,0.547l-0.618,0.797
|
||||
c-1.233,1.595-1.747,3.414-1.747,5.273c0,4.096,2.463,8.382,5.04,10.882l1.638,1.413l-0.685,0.769l-0.292,0.315
|
||||
c-1.468,1.84-2.2,3.859-2.2,5.956c0,2.267,0.854,4.632,2.565,6.981l1.231,1.071c0.245,0.184,0.36,0.301,0.36,0.718
|
||||
c0,0.43-0.13,1.164-0.374,2.605l-0.209,1.298l-0.013,0.416c0,2.707,1.562,5.197,4.777,7.591l0.915,0.57
|
||||
c2.982,1.777,3.959,2.498,3.959,3.387l-0.004,0.072l-0.021,0.442c-0.076,2.238,0.767,5.863,3.341,6.18
|
||||
c0.682,0.083,1.28-0.093,1.817-0.526c1.48-1.189,2.37-4.23,2.597-6.717c0.111-1.18,0.339-3.64-0.202-4.881
|
||||
c0,0,2.754-2.662,3.052-3.153c0.129-0.386,0.197-0.785,0.197-1.199c0-2.141-1.6-4.516-3.183-6.073c0,0-0.161-0.598,1.464-1.834
|
||||
c1.021-0.853,2.667-2.91,2.952-3.451c1.087-2.159,0.792-4.609,0.352-6.27c-0.16-0.585-1.393-3.916-1.8-4.399
|
||||
c-0.412-0.899,0.116-1.542,0.116-1.542c4.821-2.272,5.707-7.791,4.098-12.061l-0.284-0.75l1.379-0.748
|
||||
c2.643-1.42,7.211-4.563,8.274-9.618c1.295-6.11-4.043-11.823-5.709-13.427c0,0-0.224-1.197,0.496-1.551
|
||||
c0.723-0.349,3.916-2.795,4.504-3.304c1.386-1.196,2.615-2.614,3.667-4.224c2.442-3.741,3.507-7.247,3.173-10.426
|
||||
c-0.317-3.007-1.341-5.647-2.882-7.438l-2.46-2.656l1.291-0.488l4.002-1.453l0.22-0.093c3.436-1.593,7.236-3.719,9.34-7.371
|
||||
c1.037-1.811,1.546-3.903,1.509-6.234c-0.037-2.044-0.201-4.615-1.167-6.333l-0.851-1.507l1.945,0.15
|
||||
c2.272,0.182,5.074-0.576,5.868-2.659l0.374-0.984l1.485,0.801c1.965,1.076,4.536,1.497,7.646,1.26
|
||||
c1.841-0.143,3.74-0.285,5.412-0.915c0.814-0.308,1.385-0.708,1.752-1.23c0.125-0.233,0.599-1.068,0.773-2.137
|
||||
c0.17-1.076,1.167-0.93,1.167-0.93h0.017c4.706,0.461,9.953,0.56,12.73-2.226c0.781-0.785,1.488-2.109,1.609-3.03
|
||||
c0.12-0.94,0.23-0.946,5.981-0.962l1.015-0.009c4.28-0.218,8.575-0.771,10.101-4.793l0.491-2.347c0,0,2.264,0.505,4.152-0.264
|
||||
c1.325-0.654,2.371-1.555,3.081-2.671c0.596-0.912,1.09-2.26,1.09-3.481C250.253,122.301,250.195,121.903,250.074,121.546z
|
||||
M195.898,101.519c6.707,3.003,13.392,6.089,20.13,9.032c0.37,0.163,0.922,0.359,1.489,0.595l-0.004-0.445
|
||||
c0.007,0.136,0.018,0.293,0.033,0.463c1.631,0.681,3.363,1.694,1.229,3.151c-1.273,0.87-3.066,0.667-4.54,0.714
|
||||
c-0.483,0.015-0.963,0.007-1.423-0.028c-3.71-0.237-6.72-1.849-10.064-3.55c-3.419-1.737-6.857-3.44-10.286-5.163
|
||||
c-0.834-0.412-1.668-0.831-2.498-1.252l3.765-1.265l13.295,6.759c0.515,0.26,1.513,0.478,2.053,0.272
|
||||
c1.054-0.399-0.148-1.627-0.729-1.911c-0.354-0.177-0.737-0.229-1.096-0.43c-1.146-0.64-2.353-1.156-3.521-1.753
|
||||
c-2.554-1.291-5.149-2.519-7.739-3.743c-0.243-0.121-1.451-0.948-1.724-0.848L195.898,101.519z M155.186,134.769
|
||||
c-0.285-0.355-0.497-0.713-0.555-1.056c-0.293-1.604,2.127-1.992,3.222-2c2.171-0.001,3.628,1.899,5.079,3.232
|
||||
c1.998,1.841,4.01,3.668,6.014,5.496c0.501,0.456,0.873,0.891,1.489,1.357c-4.198-1.184-10.308-0.823-10.308-0.823
|
||||
L155.186,134.769z M156.927,141.291c0.064,0.101-3.937,0.456-5.386,1.164c-0.453-1.066-0.976-2.311-0.976-2.311
|
||||
c-0.368-1.12-1.284-2.861-0.635-4.024c0.476-0.842,1.517-0.944,2.369-0.809c0.389,0.066,0.671,0.187,0.901,0.359
|
||||
c0.426,0.322,0.664,0.807,1.008,1.368C155.084,138.475,156.044,139.862,156.927,141.291z M156.175,122.987
|
||||
c0.23-0.157,4.977-3.072,4.749-3.313c1.425,1.541,2.748,3.212,4.307,4.615c0.929,0.83,2.311,1.771,2.328,3.154
|
||||
c0.017,1.377-1.295,2.108-2.547,1.964C160.939,128.953,158.585,125.901,156.175,122.987z M162.534,118.009l-0.28-0.352
|
||||
c0.874-1.75,1.581-4.55,5.225-4.55c0.457,0.329,1.313,1.099,1.697,1.43c2.458,2.139,4.9,4.297,7.283,6.508
|
||||
c1.349,1.245,5.707,4.919,2.575,6.556c-1.609,0.834-4.897,0.378-6.262-0.882L162.534,118.009z M170.691,112.739
|
||||
c2.031-0.447,4.978-3.481,4.978-3.481l1.696,1.188c2.574,1.803,5.182,3.576,7.759,5.374c1.976,1.38,6.671,3.474,5.806,6.535
|
||||
c-1.123,3.977-8.24,0.574-9.996-0.905C177.513,118.553,174.104,115.64,170.691,112.739z M177.15,107.637
|
||||
c-0.635-0.537,0.439-1.686,0.912-1.93c0.852-0.434,2.174,0.214,2.941,0.66l15.89,9.259l0.845,0.263l0.941-0.299l0.095-0.628
|
||||
l-0.583-0.571l-14.295-8.122l2.81-0.184c4.845,2.702,9.748,5.313,14.55,8.082c1.397,0.812,3.748,2.146,2.228,4.007
|
||||
c-1.826,2.223-6.345,1.91-8.7,0.987l-1.693-0.67L177.15,107.637z M151.996,119.578c0.687-0.231,1.543-0.447,2.143-0.752
|
||||
l1.285-0.692l1.724-1.229l1.484-1.553l1.125-1.249l1.314-1.715l0.965-1.72c-0.556-1.835-0.604-3.574-0.402-5.317
|
||||
c0.193-1.269-0.037-2.455,0.415-3.642c0.268-0.705,0.367-1.492,0.892-2.197c3.131-4.188,8.361-5.625,13.358-4.756
|
||||
c1.721,0.304,3.452,0.754,5.121,1.287c2.685,0.853,5.391,1.717,8.023,2.703c1.521,0.578,3.016,1.223,4.42,2.033
|
||||
c0.388,0.224-2.582,1.97-2.834,2.064c-1.428,0.51-2.959,0.787-4.479,0.819c-2.689,0.058-5.321-0.489-7.967-0.867
|
||||
c-1.152-0.162-2.894-0.621-3.897,0.193c-0.97,0.775-0.955,2.567-1.558,3.627c-0.938,1.644-2.405,2.777-4.151,3.444
|
||||
c-1.751,0.669-4.212,0.443-5.681,1.658c-0.898,0.744-1.559,2.252-2.316,3.172c-0.858,1.054-1.804,2.038-2.841,2.909
|
||||
c-1.053,0.882-2.206,1.633-3.438,2.228c-0.865,0.42-4.671,1.081-3.96,2.739c0.283,0.634,1.438,0.672,1.974,0.8
|
||||
c0.784,0.188,1.301,0.456,1.898,0.998c0.88,0.787,2.127,1.898,2.248,3.149c0.15,1.549-1.63,2.369-2.898,2.053
|
||||
c-1.302-0.328-2.582-1.213-3.545-2.12c-1.099-1.032-1.331-3.132-1.422-4.537c-0.041-0.797,0.032-1.728,0.444-2.436
|
||||
C150.031,119.644,150.961,119.916,151.996,119.578z M133.047,96.056c0.104-5.143,4.695-9.25,10.224-9.139
|
||||
c5.522,0.11,9.946,4.396,9.845,9.542c-0.102,5.149-4.695,9.25-10.218,9.146C137.374,105.493,132.945,101.21,133.047,96.056z
|
||||
M147.295,108.431l-0.487,53.969l-5.592-0.979c0,0-1.042-50.286-1.042-52.99C142.879,109.428,147.295,108.431,147.295,108.431z
|
||||
M98.169,98.746c2.64-0.986,5.342-1.85,8.022-2.703c1.667-0.533,3.397-0.983,5.124-1.287c4.997-0.869,10.227,0.568,13.358,4.756
|
||||
c0.527,0.705,0.623,1.493,0.892,2.197c0.455,1.188,0.218,2.374,0.413,3.642c0.201,1.743,0.157,3.481-0.402,5.317l0.967,1.72
|
||||
l1.314,1.715l1.127,1.249l1.477,1.553l1.721,1.229l1.293,0.692c0.601,0.305,1.457,0.521,2.139,0.752
|
||||
c1.035,0.337,1.968,0.065,2.558,1.093c0.407,0.708,0.487,1.638,0.437,2.436c-0.084,1.405-0.313,3.505-1.414,4.537
|
||||
c-0.965,0.907-2.247,1.792-3.544,2.12c-1.275,0.316-3.049-0.503-2.901-2.053c0.123-1.251,1.365-2.362,2.244-3.149
|
||||
c0.602-0.542,1.116-0.81,1.901-0.998c0.544-0.128,1.697-0.166,1.968-0.8c0.719-1.658-3.087-2.319-3.949-2.739
|
||||
c-1.237-0.595-2.39-1.345-3.438-2.228c-1.042-0.871-1.984-1.855-2.845-2.909c-0.755-0.92-1.414-2.428-2.313-3.172
|
||||
c-1.473-1.215-3.927-0.989-5.686-1.658c-1.747-0.667-3.209-1.8-4.145-3.444c-0.603-1.06-0.593-2.852-1.555-3.627
|
||||
c-1.011-0.813-2.749-0.354-3.899-0.193c-2.642,0.378-5.288,0.925-7.973,0.867c-1.516-0.033-3.047-0.31-4.479-0.819
|
||||
c-0.248-0.094-3.215-1.84-2.83-2.064C95.156,99.969,96.654,99.323,98.169,98.746z M90.724,115.626l15.883-9.259
|
||||
c0.769-0.446,2.096-1.094,2.937-0.66c0.477,0.244,1.553,1.393,0.916,1.93l-15.943,10.854l-1.688,0.67
|
||||
c-2.355,0.923-6.874,1.235-8.696-0.987c-1.525-1.86,0.828-3.195,2.222-4.007c4.803-2.769,9.711-5.379,14.553-8.082l2.809,0.184
|
||||
l-14.297,8.122C88.269,115.511,89.582,116.293,90.724,115.626z M102.488,115.819c2.58-1.798,5.178-3.571,7.759-5.374l1.697-1.188
|
||||
c0,0,2.945,3.034,4.979,3.481c-3.416,2.9-6.82,5.813-10.244,8.71c-1.757,1.479-8.875,4.882-9.998,0.905
|
||||
C95.822,119.293,100.515,117.2,102.488,115.819z M111.159,121.045c2.379-2.211,4.818-4.37,7.279-6.508
|
||||
c0.382-0.331,1.238-1.101,1.693-1.43c3.646,0,4.35,2.8,5.224,4.55l-0.271,0.352l-10.243,8.71
|
||||
c-1.364,1.261-4.653,1.717-6.264,0.882C105.452,125.964,109.807,122.29,111.159,121.045z M122.38,124.289
|
||||
c1.566-1.403,2.884-3.075,4.309-4.615c-0.223,0.242,4.522,3.156,4.748,3.313c-2.405,2.914-4.767,5.965-8.838,6.42
|
||||
c-1.25,0.144-2.562-0.587-2.543-1.964C120.078,126.06,121.453,125.119,122.38,124.289z M129.762,131.713
|
||||
c1.094,0.007,3.512,0.395,3.223,2c-0.065,0.343-0.271,0.701-0.554,1.056l-4.942,6.207c0,0-6.117-0.361-10.31,0.823
|
||||
c0.616-0.466,0.991-0.902,1.485-1.357c2.003-1.828,4.015-3.655,6.013-5.496C126.131,133.612,127.588,131.712,129.762,131.713z
|
||||
M133.405,137.037c0.341-0.562,0.58-1.046,1.008-1.368c0.226-0.172,0.515-0.293,0.899-0.359c0.859-0.135,1.894-0.033,2.365,0.809
|
||||
c0.654,1.164-0.26,2.904-0.63,4.024c0,0-0.523,1.244-0.974,2.311c-1.452-0.708-5.451-1.063-5.392-1.164
|
||||
C131.569,139.862,132.53,138.475,133.405,137.037z M71.584,110.551c6.733-2.943,13.423-6.029,20.13-9.032l1.627,0.6l-14.572,7.101
|
||||
c-0.446,0.609-1.047,1.466,0.003,1.665c0.516,0.094,1.345-0.118,1.809-0.354l13.303-6.759l3.766,1.265
|
||||
c-0.834,0.421-1.667,0.84-2.5,1.252c-3.431,1.723-6.872,3.426-10.293,5.163c-3.341,1.702-6.342,3.313-10.056,3.55
|
||||
c-0.463,0.035-0.94,0.043-1.429,0.028c-1.466-0.047-3.263,0.155-4.534-0.714C65.943,112.344,70.14,111.182,71.584,110.551z
|
||||
M44.442,127.316c-1.483-0.405-5.341-2.238-3.637-4.374c1.131-1.414,3.456-1.813,5.072-2.375c3.6-1.246,7.204-2.5,10.798-3.75
|
||||
c1.818-0.638,3.644-1.271,5.47-1.9c0.214-0.076,1.235-0.443,2.121-0.569c0.918-0.123,1.684,0.025,1.242,1.063
|
||||
c-0.29,0.666-2.101,0.995-2.719,1.213c-3.436,1.208-6.871,2.485-10.257,3.817c-1.082,0.421-2.324,0.666-3.323,1.217
|
||||
c-1.238,0.684-0.79,2.422,1.026,2.386l18.313-7.176c1.606-0.034,3.191,0.053,4.683,0.564c0.498,0.167,0.065,0.859-1.2,1.364
|
||||
c-4.678,1.878-15.339,6.828-18.903,7.825C50.245,127.424,47.402,128.124,44.442,127.316z M64.714,133.576
|
||||
c-7.435,2.466-24.081-0.048-9.279-5.878c8.011-3.152,15.897-6.625,23.843-9.938c0.242,0.047,1.916,0.895,1.215,1.247
|
||||
c-0.651,0.327-1.303,0.656-1.958,0.98c-3.061,1.528-6.125,3.065-9.19,4.594c-1.462,0.732-2.988,1.357-4.468,2.055
|
||||
c-0.732,0.342-3.069,1.108-3.345,2.001c-0.393,1.247,2.244,0.963,3.015,0.828c0.735-0.135,1.645-0.876,2.297-1.215
|
||||
c3.29-1.732,6.578-3.475,9.866-5.215c1.331-0.699,2.672-1.385,4.008-2.088c1.285-0.666,3.061-0.458,3.917,1.067
|
||||
c0.599,1.061-0.672,1.397-1.54,1.866c-0.777,0.423-1.573,0.799-2.356,1.208c-5.061,2.625-10.062,5.389-15.101,8.079
|
||||
L64.714,133.576z M69.912,139.529c-1.528-0.448-5.778-1.656-3.8-4.004l0.834-0.966l25.419-13.334c0,0,0,2.767,1.789,4.564
|
||||
c1.786,1.789,5.203,0.608,5.203,0.608l-19.737,12.663C76.781,140.828,72.967,140.42,69.912,139.529z M93.83,143.617l-0.762,0.405
|
||||
c-2.47,1.345-5.674,1.691-8.419,1.166c-1.004-0.188-2.067-0.534-2.664-1.429c-1.721-2.605,1.857-4.045,3.535-5.194
|
||||
c3.571-2.424,7.164-4.827,10.732-7.265c1.978-1.371,4.075-3.226,6.26-4.254c2.036,2.036,4.288,2.982,8.558,2.765L93.83,143.617z
|
||||
M98.752,144.929c-0.515-1.961,1.662-3.585,2.975-4.639c3.161-2.54,6.469-4.914,9.634-7.458c1.851-1.486,3.696-3.046,5.635-4.408
|
||||
c-0.307,0.214,1.529,5.396,9.059,2.277c-1.63,1.441-2.35,2.157-3.524,3.234c-2.308,2.122-4.616,4.24-6.924,6.355
|
||||
c-1.311,1.209-3.721,3.08-6.02,4.089C105.75,146.06,99.788,148.858,98.752,144.929z M148.85,273.213
|
||||
c-0.266,0.814-0.66,1.672-1.314,2.25c-0.308-0.143-0.52-0.426-0.588-0.776c-0.14-0.69,0.02-1.386,0.055-2.072
|
||||
c0.08-1.498-0.238-2.415-1.376-3.43c-2.401-2.13-5.486-3.239-7.542-5.803c-0.746-0.884-1.438-4.46-0.577-5.237
|
||||
c0.605-0.464,3.98,0.947,4.13,1.669c0.322,2.749,2.05,4.183,4.346,5.354c1.959,1.003,3.106,2.764,3.248,4.943
|
||||
C149.303,271.152,149.165,272.218,148.85,273.213z M152.3,262.722c-2.463-0.211-7.815-4.839-10.166-5.99
|
||||
c-2.448-1.236-4.72-2.393-6.635-4.253c-0.506-0.484-0.83-1.117-1.162-1.682c-0.979-1.925-0.75-4.773,0.214-6.417l0.872-1.091
|
||||
l0.954-0.849l1.087,1.051c0.492,0.644,1.413,1.291,1.913,1.938l0.025,0.016c-0.753,1.006-1.325,2.366-0.693,3.452
|
||||
C141.355,253.071,152.073,257.165,152.3,262.722z M142.793,244.782l2.354,1.152l-0.46,6.094l-1.419-1.057L142.793,244.782z
|
||||
M153.656,250.067c-1.153,2.272-3.875,2.534-6.191,3.519c0.993-2.831,1.816-5.822,0-8.475c-0.666-0.877-6.389-3.93-7.56-4.66
|
||||
c-1.854-1.146-3.791-1.825-5.376-3.359c-1.669-1.613-2.914-3.462-3.552-5.295c-1.119-3.43-0.185-8.162,1.678-7.736
|
||||
c1.359,0.271,3.802,1.421,5.32,2.089c-1.679,3.138,0.035,6.975,2.885,9.011c2.179,1.627,4.799,2.555,7.238,3.866
|
||||
C152.49,241.191,156.121,244.995,153.656,250.067z M140.511,227.71l0.23,3.968C140.742,231.678,137.449,228.843,140.511,227.71z
|
||||
M142.974,227.046l2.784,1.003l-0.41,7.837l-1.772-0.671L142.974,227.046z M156.182,234.305c-1.493,2.563-5.302,3.266-8.057,3.062
|
||||
c0.038-1.816,0.125-6.098,0.125-6.098c6.394-1.063-2.278-5.354-0.345-4.202c-6.726-3.942-14.446-4.727-20.041-9.905
|
||||
c-2.51-2.268-3.956-6.654-3.295-9.651c0.376-2.055,2.832-5.646,5.307-6.152l6.15,2.977c-0.874,1.088-2.437,2.877-2.806,4.143
|
||||
c-0.542,1.57-0.83,3.542-0.007,4.748c3.461,5.461,10.76,6.234,16.583,8.404c2.706,1.004,5.304,2.884,6.359,5.276
|
||||
C157.179,229.211,157.496,232.044,156.182,234.305z M139.627,205.392l0.418,10.89
|
||||
C132.189,211.919,135.625,207.417,139.627,205.392z M141.772,206.028l4.157,0.64l-0.818,11.224l-2.615-0.84L141.772,206.028z
|
||||
M165.591,211.72c0.247,1.582,0.099,3.814-0.558,5.303l-0.89,1.728c-2.002,2.571-3.55,3.096-6.729,4.86
|
||||
c0.176-0.083-6.812-3.701-8.327-4.685c1.668,1.087,5.228-3.433,5.66-4.574c1.112-2.95,0.043-5.419-2.54-7.083
|
||||
c-8.442-5.679-19.143-6.509-27.479-12.353c-7.103-4.956-10.563-14.994-2.475-20.879c0.606-0.384,1.04-0.773,1.725-1.231
|
||||
l10.944,1.562c-2.17,1.109-4.601,3.495-5.421,5.804c-0.91,2.55,0.403,5.656,1.993,7.688c2.141,2.733,5.447,4.523,8.659,5.702
|
||||
c2.895,1.063,5.928,1.783,8.695,3.184c3.762,1.895,7.418,3.514,10.662,6.283C162.128,205.258,165.044,208.155,165.591,211.72z
|
||||
M148.25,217.475l0.275-9.847c2.242,1.162,4.17,2.923,4.025,4.896C152.425,214.283,150.857,216.524,148.25,217.475z
|
||||
M138.276,175.433l0.574,14.978C126.675,183.334,133.459,178.03,138.276,175.433z M140.943,175.045l5.248,1.37l-0.159,16.624
|
||||
l-4.808-2.147L140.943,175.045z M169.566,177.031c3.501,4.065,2.477,9.539-0.018,13.74c-1.129,1.895-2.512,3.636-4.219,5.052
|
||||
c-0.742,0.618-5.445,4.316-6.251,3.894c-2.355-1.229-6.72-4.099-9.847-5.266c4.252-1.636,9.254-4.418,10.552-9.146
|
||||
c2.454-8.945-12.71-11.388-18.481-12.813c-6.207-1.531-12.709-1.411-18.97-2.656c-5.651-1.131-13.178-3.676-15.464-9.599
|
||||
c-0.73-1.9-0.61-3.891,0.049-5.792c2.083-6.034,7.249-9.462,13.303-10.712c4.101-0.785,8.518-0.854,12.33-0.072
|
||||
c2.208,0.362,5.003,0.812,5.824,2.576c0.976,2.236-3.214,3.265-5.436,3.773c-4.69,0.973-9.448,1.583-14.182,0.753l-0.366-0.06
|
||||
l-0.496,0.318c-0.256,0.175-0.567,0.34-0.891,0.724c-7.227,8.668,12.953,9.979,16.874,10.719
|
||||
C146.832,164.899,160.439,166.421,169.566,177.031z M148.959,192.003l0.42-14.867c3.711,1.454,7.658,4.009,7.305,6.63
|
||||
C156.357,186.224,153.563,190.712,148.959,192.003z M138.23,160.877c0,0-23.619-1.815-18.976-7.804
|
||||
c4.762,0.737,10.019,0.904,18.851-2.095L138.23,160.877z M149.941,162.772v-9.849c0,0,9.497,2.162,17.522-0.299
|
||||
C177.726,163.313,149.941,162.772,149.941,162.772z M182.586,159.439c-1.407,4.023-5.402,6.861-9.089,8.645
|
||||
c-0.968,0.463-4.026,2.252-5.848,2.351c-1.948-1.943-6.452-3.993-10.289-5.287c-0.896-0.588,3.057-0.911,4.72-0.962
|
||||
c2.959-0.088,6.228-0.816,8.599-2.836c2.637-2.256,2.965-6.466,0.631-9.142c-0.203-0.226-1.979-2.263-2.314-2.198
|
||||
c-5.21,1.084-10.405,1.696-15.658,0.722c-2.089-0.444-5.675-1.935-3.901-4.617c1.061-1.603,3.994-2.484,5.828-2.634
|
||||
c7.621-0.627,15.486-0.602,22.116,3.752C181.574,149.999,184.439,154.127,182.586,159.439z M188.862,144.929
|
||||
c-1.038,3.929-6.991,1.13-10.838-0.55c-2.3-1.009-4.709-2.88-6.018-4.089c-2.31-2.115-4.616-4.233-6.925-6.355
|
||||
c-1.176-1.078-1.893-1.793-3.529-3.234c8.459,3.119,9.373-2.063,9.061-2.277c1.934,1.362,3.789,2.922,5.637,4.408
|
||||
c3.169,2.544,6.47,4.919,9.637,7.458C187.198,141.344,189.379,142.968,188.862,144.929z M205.628,143.759
|
||||
c-0.593,0.895-1.66,1.241-2.656,1.429c-2.754,0.525-5.954,0.18-8.431-1.166l-0.756-0.405l-17.239-13.806
|
||||
c4.271,1.416,6.517-0.729,8.554-2.765c2.187,1.028,4.283,2.884,6.266,4.254c3.562,2.438,7.156,4.841,10.725,7.265
|
||||
C203.774,139.714,207.356,141.153,205.628,143.759z M217.701,139.529c-3.059,0.891-6.873,1.299-9.707-0.468l-19.735-12.663
|
||||
c0,0,3.408,1.181,5.198-0.608c1.79-1.798,1.79-4.564,1.79-4.564l25.421,13.334l0.835,0.966
|
||||
C223.475,137.873,219.23,139.081,217.701,139.529z M222.899,133.576l-0.929-0.41c-5.031-2.689-10.035-5.454-15.098-8.079
|
||||
c-0.783-0.408-1.578-0.784-2.354-1.208c-0.871-0.469-2.138-0.806-1.543-1.866c0.856-1.524,2.632-1.733,3.92-1.067
|
||||
c1.336,0.703,2.669,1.389,4.002,2.088c3.289,1.74,6.576,3.482,9.869,5.215c0.654,0.339,1.561,1.08,2.297,1.215
|
||||
c0.776,0.135,3.406,0.419,3.018-0.828c-0.281-0.893-2.615-1.659-3.35-2.001c-1.479-0.698-3.001-1.322-4.461-2.055
|
||||
c-3.066-1.529-6.133-3.066-9.194-4.594c-0.524-0.261-1.454-0.445-1.809-0.937c-0.397-0.56,0.409-1.56,1.065-1.29
|
||||
c7.946,3.313,15.832,6.785,23.841,9.938C246.975,133.528,230.334,136.042,222.899,133.576z M243.17,127.316
|
||||
c-2.961,0.808-6.301,0.108-9.185-0.696c-4.536-1.264-8.913-3.079-13.175-5.074c-1.569-0.737-3.128-1.499-4.684-2.268
|
||||
c-0.534-0.266-1.087-1.004-0.925-1.626c0.336-1.28,2.938-1.183,3.863-0.784l18.312,7.176c1.82,0.036,2.262-1.703,1.025-2.386
|
||||
c-0.999-0.551-2.239-0.795-3.322-1.217c-2.09-0.829-4.189-1.625-6.297-2.396c-1.236-0.453-2.499-0.815-3.746-1.228
|
||||
c-0.735-0.249-2.584-0.593-2.928-1.406c-0.446-1.039,0.318-1.186,1.237-1.063c0.881,0.126,1.91,0.494,2.121,0.569
|
||||
c1.826,0.63,3.648,1.262,5.471,1.9c3.596,1.25,7.196,2.504,10.797,3.75c1.617,0.562,3.944,0.961,5.075,2.375
|
||||
C248.508,125.078,244.654,126.911,243.17,127.316z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
|
||||
|
||||
<noscript>
|
||||
<div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
|
||||
Your web browser must have JavaScript enabled
|
||||
in order for this application to display correctly.
|
||||
</div>
|
||||
</noscript>
|
||||
|
||||
</body>
|
||||
</html>
|
223
war/resources/css/elfinder.css
Normal file
83
war/resources/css/fancybox.css
Normal file
@ -0,0 +1,83 @@
|
||||
/*
|
||||
* FancyBox - jQuery Plugin
|
||||
* Simple and fancy lightbox alternative
|
||||
*
|
||||
* Examples and documentation at: http://fancybox.net
|
||||
*
|
||||
* Copyright (c) 2008 - 2010 Janis Skarnelis
|
||||
* That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
|
||||
*
|
||||
* Version: 1.3.4 (11/11/2010)
|
||||
* Requires: jQuery v1.3+
|
||||
*
|
||||
* Dual licensed under the MIT and GPL licenses:
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
* http://www.gnu.org/licenses/gpl.html
|
||||
*/
|
||||
|
||||
#fancybox-loading { position: fixed; top: 50%; left: 50%; width: 40px; height: 40px; margin-top: -20px; margin-left: -20px; cursor: pointer; overflow: hidden; z-index: 1104; display: none; }
|
||||
#fancybox-loading div { position: absolute; top: 0; left: 0; width: 40px; height: 480px; background-image: url('../images/elements/lightbox/fancybox.png'); }
|
||||
#fancybox-overlay { position: absolute; top: 0; left: 0; width: 100%; z-index: 1100; display: none; }
|
||||
#fancybox-tmp { padding: 0; margin: 0; border: 0; overflow: auto; display: none; }
|
||||
#fancybox-wrap { position: absolute; top: 0; left: 0; padding: 20px; z-index: 1101; outline: none; display: none; }
|
||||
#fancybox-outer { position: relative; width: 100%; height: 100%; background: #fff; }
|
||||
#fancybox-content { width: 0; height: 0; padding: 0; outline: none; position: relative; overflow: hidden; z-index: 1102; border: 0px solid #fff; }
|
||||
#fancybox-hide-sel-frame { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; z-index: 1101; }
|
||||
#fancybox-close { position: absolute; top: 0; right: 0; width: 14px; height: 14px; background: transparent url('../images/elements/lightbox/fancybox.png') -48px -2px; cursor: pointer; z-index: 1103; display: none; }
|
||||
#fancybox-error { color: #444; font: normal 12px/20px Arial; padding: 14px; margin: 0; }
|
||||
#fancybox-img { width: 100%; height: 100%; padding: 0; margin: 0; border: none; outline: none; line-height: 0; vertical-align: top; }
|
||||
#fancybox-frame { width: 100%; height: 100%; border: none; display: block; }
|
||||
#fancybox-left, #fancybox-right { position: absolute; bottom: 0px; height: 100%; width: 35%; cursor: pointer; outline: none; background: transparent url('../images/elements/lightbox/blank.gif'); z-index: 1102; display: none; }
|
||||
#fancybox-left { left: 0px; }
|
||||
#fancybox-right { right: 0px; }
|
||||
#fancybox-left-ico, #fancybox-right-ico { position: absolute; top: 50%; left: -9999px; width: 15px; height: 17px; margin-top: -9px; cursor: pointer; z-index: 1102; display: block; }
|
||||
#fancybox-left-ico { background-image: url('../images/elements/lightbox/fancybox.png'); background-position: -48px -35px; margin-left: -19px; }
|
||||
#fancybox-right-ico { background-image: url('../images/elements/lightbox/fancybox.png'); background-position: -48px -17px; margin-right: -19px; }
|
||||
#fancybox-left:hover, #fancybox-right:hover { visibility: visible; /* IE6 */ }
|
||||
#fancybox-left:hover span { left: 20px; }
|
||||
#fancybox-right:hover span { left: auto; right: 20px; }
|
||||
.fancybox-bg { position: absolute; padding: 0; margin: 0; border: 0; width: 20px; height: 20px; z-index: 1001; }
|
||||
#fancybox-bg-n { top: -20px; left: 0; width: 100%; background-image: url('../images/elements/lightbox/fancybox-x.png'); }
|
||||
#fancybox-bg-ne { top: -20px; right: -20px; background-image: url('../images/elements/lightbox/fancybox.png'); background-position: -40px -162px; }
|
||||
#fancybox-bg-e { top: 0; right: -20px; height: 100%; background-image: url('../images/elements/lightbox/fancybox-y.png'); background-position: -20px 0px; }
|
||||
#fancybox-bg-se { bottom: -20px; right: -20px; background-image: url('../images/elements/lightbox/fancybox.png'); background-position: -40px -182px; }
|
||||
#fancybox-bg-s { bottom: -20px; left: 0; width: 100%; background-image: url('../images/elements/lightbox/fancybox-x.png'); background-position: 0px -20px; }
|
||||
#fancybox-bg-sw { bottom: -20px; left: -20px; background-image: url('../images/elements/lightbox/fancybox.png'); background-position: -40px -142px; }
|
||||
#fancybox-bg-w { top: 0; left: -20px; height: 100%; background-image: url('../images/elements/lightbox/fancybox-y.png'); }
|
||||
#fancybox-bg-nw { top: -20px; left: -20px; background-image: url('../images/elements/lightbox/fancybox.png'); background-position: -40px -122px; }
|
||||
#fancybox-title { font-family: Helvetica; font-size: 12px; z-index: 1102; }
|
||||
.fancybox-title-inside { padding-bottom: 10px; text-align: center; color: #333; background: #fff; position: relative; }
|
||||
.fancybox-title-outside { padding-top: 10px; color: #fff; }
|
||||
.fancybox-title-over { position: absolute; bottom: 0; left: 0; color: #FFF; text-align: left; }
|
||||
#fancybox-title-over { padding: 10px; background-image: url('../images/elements/lightbox/fancy_title_over.png'); display: block; }
|
||||
.fancybox-title-float { position: absolute; left: 0; bottom: -20px; height: 32px; }
|
||||
#fancybox-title-float-wrap { border: none; border-collapse: collapse; width: auto; }
|
||||
#fancybox-title-float-wrap td { border: none; white-space: nowrap; }
|
||||
#fancybox-title-float-left { padding: 0 0 0 15px; background: url('../images/elements/lightbox/fancybox.png') -40px -90px no-repeat; }
|
||||
#fancybox-title-float-main { color: #FFF; line-height: 29px; font-weight: bold; padding: 0 0 3px 0; background: url('../images/elements/lightbox/fancybox-x.png') 0px -40px; }
|
||||
#fancybox-title-float-right { padding: 0 0 0 15px; background: url('../images/elements/lightbox/fancybox.png') -55px -90px no-repeat; }
|
||||
|
||||
/* IE6 */
|
||||
|
||||
.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_close.png', sizingMethod='scale'); }
|
||||
.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_nav_left.png', sizingMethod='scale'); }
|
||||
.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_nav_right.png', sizingMethod='scale'); }
|
||||
.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
|
||||
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_title_left.png', sizingMethod='scale'); }
|
||||
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_title_main.png', sizingMethod='scale'); }
|
||||
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_title_right.png', sizingMethod='scale'); }
|
||||
.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame { height: expression(this.parentNode.clientHeight + "px"); }
|
||||
#fancybox-loading.fancybox-ie6 { position: absolute; margin-top: 0; top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'); }
|
||||
#fancybox-loading.fancybox-ie6 div { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_loading.png', sizingMethod='scale'); }
|
||||
|
||||
/* IE6, IE7, IE8 */
|
||||
|
||||
.fancybox-ie .fancybox-bg { background: transparent !important; }
|
||||
.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/elements/lightbox/fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }
|
1257
war/resources/css/font.css
Normal file
BIN
war/resources/css/font/icomoon.eot
Normal file
2334
war/resources/css/font/icomoon.svg
Normal file
After Width: | Height: | Size: 361 KiB |
BIN
war/resources/css/font/icomoon.ttf
Normal file
BIN
war/resources/css/font/icomoon.woff
Normal file
182
war/resources/css/fullcalendar.css
Normal file
@ -0,0 +1,182 @@
|
||||
|
||||
/* ===== Calendar styles ===== */
|
||||
|
||||
.fc { direction: ltr; text-align: left; }
|
||||
.fc table { border-collapse: collapse; border-spacing: 0; }
|
||||
html .fc, .fc table { font-size: 1em; }
|
||||
.fc td, .fc th { padding: 0; vertical-align: top; }
|
||||
.fc-header { position: relative; }
|
||||
.fc-header td { white-space: nowrap; }
|
||||
.fc-header-left { text-align: left; width: 100%; }
|
||||
.fc-header-center { text-align: center; position: absolute; top: 0; width: 80%; left: 10%; line-height: 38px; }
|
||||
.fc-button-inner { border-left: 1px solid #d5d5d5; }
|
||||
.fc-header-left .fc-button-inner { border: none; }
|
||||
.fc-header-right { text-align: right; position: absolute; top: -38px; right: 0; }
|
||||
.fc-header-right .fc-button-agendaDay .fc-button-inner { -webkit-border-top-right-radius: 3px; -moz-border-radius-topright: 3px; }
|
||||
.fc-header-title { display: inline-block; vertical-align: top; }
|
||||
.fc-header-title h2 { font-size: 12px; }
|
||||
.fc-header-title strong { margin-top: 0; white-space: nowrap; padding: 8px 12px!important; display: block; }
|
||||
.fc .fc-header-space { padding-left: 10px; }
|
||||
.fc-header .fc-corner-right { margin-right: 0; float: right; }
|
||||
.fc-header .ui-corner-right { margin-right: 0; }
|
||||
.fc-header .fc-state-hover, .fc-header .ui-state-hover { z-index: 2; }
|
||||
.fc-header .fc-state-down { z-index: 3; }
|
||||
.fc-header .fc-state-active, .fc-header .ui-state-active { z-index: 4; }
|
||||
.fc-button-prev .fc-button-content { width: 10px; background: url(../images/leftArrow.png) no-repeat 15px 14px; }
|
||||
.fc-button-next .fc-button-content { width: 10px; background: url(../images/rightArrow.png) no-repeat 15px 14px; }
|
||||
.fc-button-next { float: right; margin-right: -2px; }
|
||||
.fc-view { width: 100%; overflow: hidden; }
|
||||
.fc-border-separate thead {
|
||||
background: #f8f8f8;
|
||||
background: -moz-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#e8e8e8));
|
||||
background: -webkit-linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%);
|
||||
background: -o-linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%);
|
||||
background: -ms-linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%);
|
||||
background: linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#e8e8e8',GradientType=0 );
|
||||
}
|
||||
.fc-widget-header, .fc-widget-content { border: 1px solid #d5d5d5; }
|
||||
.fc-state-highlight { background: #f4f3e6; }
|
||||
.fc-cell-overlay { background: #9cf; opacity: .2; filter: alpha(opacity=20); /* for IE */ }
|
||||
.fc-button { position: relative; /*display: inline-block;*/ cursor: pointer; }
|
||||
.fc-state-default {}
|
||||
.fc-button-inner { position: relative; float: left; overflow: hidden; }
|
||||
.fc-state-default .fc-button-inner {}
|
||||
.fc-button-content { position: relative; float: left; height: 38px; line-height: 38px; padding: 0 14px; white-space: nowrap; }
|
||||
.fc-header-right .fc-button-content { height: 38px; }
|
||||
|
||||
/* icon (for jquery ui) */
|
||||
.fc-button-content .fc-icon-wrap { position: relative; float: left; top: 50%; }
|
||||
.fc-button-content .ui-icon { position: relative; float: left; margin-top: -50%; *margin-top: 0; *top: -50%; }
|
||||
|
||||
/* gloss effect */
|
||||
.fc-state-default .fc-button-effect { position: absolute; top: 50%; left: 0; }
|
||||
.fc-state-default .fc-button-effect span {}
|
||||
|
||||
/* button states (determines colors) */
|
||||
.fc-state-default, .fc-state-default .fc-button-inner {}
|
||||
.fc-state-hover, .fc-state-hover .fc-button-inner {}
|
||||
.fc-state-down, .fc-state-down .fc-button-inner {}
|
||||
|
||||
.fc-state-active, .fc-state-active .fc-button-inner { color: #797979; background: #f9f9f9; box-shadow: 0 -1px 0 #EAEAEA inset; }
|
||||
.fc-first th { padding-top: 1px; }
|
||||
.fc-state-disabled, .fc-state-disabled .fc-button-inner { color: #999; border-color: #ddd; }
|
||||
.fc-state-disabled { cursor: default; }
|
||||
.fc-state-disabled .fc-button-effect { display: none; }
|
||||
|
||||
|
||||
/* Global Event Styles */
|
||||
.fc-event { border-style: solid; border-width: 0; font-size: .85em; cursor: default; }
|
||||
a.fc-event, .fc-event-draggable { cursor: pointer; }
|
||||
a.fc-event { text-decoration: none; }
|
||||
.fc-rtl .fc-event { text-align: right; }
|
||||
|
||||
.fc-event-skin {
|
||||
border-color: #596772; /* default BORDER color */
|
||||
background-color: #596772; /* default BACKGROUND color */
|
||||
color: #fff; /* default TEXT color */
|
||||
display: block;
|
||||
padding: 1px 0px;
|
||||
font-size: 11px;
|
||||
-moz-border-radius: 2px; -webkit-border-radius: 2px; -khtml-border-radius: 2px; border-radius: 2px;
|
||||
margin-top: 1px;
|
||||
}
|
||||
.fc-event-inner { position: relative; width: 100%; height: 100%; border-style: solid; border-width: 0; overflow: hidden; }
|
||||
.fc-event-time, .fc-event-title { padding: 0 2px 1px 5px; display: block; float: left; line-height: 16px; }
|
||||
.fc .ui-resizable-handle { display: block; position: absolute; z-index: 99999; overflow: hidden; font-size: 300%; line-height: 50%; }
|
||||
|
||||
|
||||
/* Horizontal Events */
|
||||
.fc-event-hori { margin-bottom: 1px; }
|
||||
|
||||
/* resizable */
|
||||
.fc-event-hori .ui-resizable-e { top: 0 !important; right: -3px !important; width: 7px !important; height: 100% !important; cursor: e-resize; }
|
||||
.fc-event-hori .ui-resizable-w { top: 0 !important; left: -3px !important; width: 7px !important; height: 100% !important; cursor: w-resize; }
|
||||
|
||||
.fc-event-hori .ui-resizable-handle {}
|
||||
|
||||
/* Fake Rounded Corners (for buttons and events) */
|
||||
.fc-corner-left { margin-left: 1px; }
|
||||
.fc-corner-left .fc-button-inner, .fc-corner-left .fc-event-inner {}
|
||||
.fc-corner-right { margin-right: 1px; }
|
||||
.fc-corner-right .fc-button-inner, .fc-corner-right .fc-event-inner { margin-right: 0; }
|
||||
.fc-corner-top { margin-top: 1px; }
|
||||
.fc-corner-top .fc-event-inner { margin-top: -1px; }
|
||||
.fc-corner-bottom { margin-bottom: 1px; }
|
||||
.fc-corner-bottom .fc-event-inner { margin-bottom: -1px; }
|
||||
|
||||
|
||||
/* Fake Rounded Corners SPECIFICALLY FOR EVENTS */
|
||||
.fc-corner-left .fc-event-inner {}
|
||||
.fc-corner-right .fc-event-inner {}
|
||||
.fc-corner-top .fc-event-inner { border-top-width: 1px; }
|
||||
.fc-corner-bottom .fc-event-inner { border-bottom-width: 1px; }
|
||||
|
||||
|
||||
/* Reusable Separate-border Table */
|
||||
table.fc-border-separate { border-collapse: separate; }
|
||||
.fc-border-separate th, .fc-border-separate td { border-width: 1px 0 0 1px; }
|
||||
.fc-border-separate td:first-child, .fc-border-separate th:first-child { border-left: none; }
|
||||
.fc-border-separate th.fc-last, .fc-border-separate td.fc-last {}
|
||||
.fc-border-separate tr.fc-last th, .fc-border-separate tr.fc-last td { border-top-width: 1px; }
|
||||
.fc-border-separate tbody tr.fc-first td, .fc-border-separate tbody tr.fc-first th { border-top-width: 1px; }
|
||||
|
||||
|
||||
/* Month View, Basic Week View, Basic Day View */
|
||||
.fc-cols th { text-align: center; }
|
||||
.fc-cols .fc-day-number { float: right; padding: 3px 5px; }
|
||||
.fc-cols .fc-other-month .fc-day-number { opacity: 0.3; filter: alpha(opacity=30); }
|
||||
.fc-cols .fc-day-content { clear: both; padding: 5px 2px 3px; }
|
||||
|
||||
/* event styles */
|
||||
.fc-cols .fc-event-time { font-weight: bold; }
|
||||
|
||||
/* right-to-left */
|
||||
.fc-rtl .fc-cols .fc-day-number { float: left; }
|
||||
.fc-rtl .fc-cols .fc-event-time { float: right; }
|
||||
|
||||
|
||||
/* Agenda Week View, Agenda Day View */
|
||||
.fc-agenda table { border-collapse: separate; }
|
||||
.fc-agenda-days th { text-align: center; }
|
||||
.fc-agenda .fc-agenda-axis { width: 50px; padding: 0 4px; vertical-align: middle; text-align: right; white-space: nowrap; font-weight: normal; }
|
||||
.fc-agenda .fc-day-content { padding: 2px 2px 1px; }
|
||||
.fc-agenda-days .fc-agenda-axis { border-right-width: 1px; }
|
||||
.fc-agenda-days .fc-col0 { border-left-width: 0; }
|
||||
.fc-agenda-allday th { border-width: 0 1px; }
|
||||
.fc-agenda-allday .fc-day-content { min-height: 34px; _height: 34px; }
|
||||
.fc-agenda-divider-inner { height: 2px; overflow: hidden; }
|
||||
.fc-widget-header .fc-agenda-divider-inner { background: #eee; }
|
||||
|
||||
/* slot rows */
|
||||
.fc-agenda-slots th { border-width: 1px 1px 0; }
|
||||
.fc-agenda-slots td { border-width: 1px 0 0; background: none; }
|
||||
.fc-agenda-slots td div { height: 20px; }
|
||||
.fc-agenda-slots tr.fc-slot0 th, .fc-agenda-slots tr.fc-slot0 td { border-top-width: 0; }
|
||||
.fc-agenda-slots tr.fc-minor th, .fc-agenda-slots tr.fc-minor td { border-top-style: dotted; }
|
||||
.fc-agenda-slots tr.fc-minor th.ui-widget-header { *border-top-style: solid; }
|
||||
|
||||
|
||||
|
||||
/* Vertical Events */
|
||||
.fc-event-vert { border-width: 0 1px; }
|
||||
.fc-event-vert .fc-event-head, .fc-event-vert .fc-event-content { position: relative; z-index: 2; width: 100%; overflow: hidden; }
|
||||
.fc-event-vert .fc-event-time { white-space: nowrap; font-size: 10px; }
|
||||
.fc-event-vert .fc-event-bg { position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 100%; background: #fff; opacity: .3; filter: alpha(opacity=30); }
|
||||
.fc .ui-draggable-dragging .fc-event-bg, .fc-select-helper .fc-event-bg { display: none\9; }
|
||||
|
||||
/* resizable */
|
||||
.fc-event-vert .ui-resizable-s {
|
||||
bottom: 0 !important; /* importants override pre jquery ui 1.7 styles */
|
||||
width: 100% !important;
|
||||
height: 8px !important;
|
||||
overflow: hidden !important;
|
||||
line-height: 8px !important;
|
||||
font-size: 11px !important;
|
||||
font-family: monospace;
|
||||
text-align: center;
|
||||
cursor: s-resize;
|
||||
}
|
||||
|
||||
.fc-agenda .ui-resizable-resizing { _overflow: hidden; }
|
31
war/resources/css/ie.css
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
/* # Special rules for IE
|
||||
================================================== */
|
||||
|
||||
.tAlt thead td { background: #eee; text-align: center; font-size: 11px; border-left: 1px solid #dfdfdf; border-bottom: 1px solid #dfdfdf; padding: 2px 10px; font-size: 11px; color: #909090; }
|
||||
.tAlt tbody tr td { padding: 7px 11px; vertical-align: middle; border-left: 1px solid #DFDFDF; box-shadow: 0 1px 0 #fafafa inset; -webkit-box-shadow: 0 1px 0 #fafafa inset; -moz-box-shadow: 0 1px 0 #fafafa inset; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); border-bottom: 1px solid #DFDFDF; }
|
||||
.tAlt tbody td:first-child, .tAlt thead td:first-child { border-left: none; }
|
||||
|
||||
|
||||
/* Middle nav rounded buttons will appear as square buttons in IE */
|
||||
|
||||
.middleNavR li, .middleNavR li a { border-radius: 3px!important; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
|
||||
.middleNavR li { width: 84px; height: 84px; box-shadow: inset 0 1px 1px #ccc, 0 1px 1px #fcfcfc, 0 0 1px 1px #f5f5f5; -webkit-box-shadow: inset 0 1px 1px #ccc, 0 1px 1px #fcfcfc, 0 0 1px 1px #f5f5f5; -moz-box-shadow: inset 0 1px 1px #ccc, 0 1px 1px #fcfcfc, 0 0 1px 1px #f5f5f5; }
|
||||
.middleNavR li a { top: 8px; left: 8px; width: 66px; height: 66px; box-shadow: 0 1px 1px #b5b5b5, 0px 1px 0 #fff inset; -webkit-box-shadow: 0 1px 1px #b5b5b5, 0px 1px 0 #fff inset; -moz-box-shadow: 0 2px 3px #b5b5b5, 0px 1px 0 #fff inset; }
|
||||
.middleNavR { text-align: center; margin: 30px 0 0 0; }
|
||||
.middleNavR li { margin: 5px 10px -7px 10px; position: relative; display: inline-block; text-align: center; border: 1px solid #dfdfdf; background: #eee; }
|
||||
.middleNavR li a {
|
||||
position: absolute;
|
||||
background: #f7f7f7;
|
||||
background: -moz-linear-gradient(top, #f7f7f7 0%, #e8e8e8 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#e8e8e8));
|
||||
background: -webkit-linear-gradient(top, #f7f7f7 0%,#e8e8e8 100%);
|
||||
background: -o-linear-gradient(top, #f7f7f7 0%,#e8e8e8 100%);
|
||||
background: -ms-linear-gradient(top, #f7f7f7 0%,#e8e8e8 100%);
|
||||
background: linear-gradient(top, #f7f7f7 0%,#e8e8e8 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#e8e8e8',GradientType=0 );
|
||||
border: 1px solid #DFDFDF;
|
||||
transition: all 0.1s ease-in-out;
|
||||
-moz-transition: all 0.1s ease-in-out;
|
||||
-webkit-transition: all 0.1s ease-in-out;}
|
||||
|
435
war/resources/css/plugins.css
Normal file
@ -0,0 +1,435 @@
|
||||
|
||||
/* # Don't forget to remove necessary styles, if you don't use any of listed plugins
|
||||
================================================== */
|
||||
|
||||
|
||||
/* ===== jQuery Sourcerer (syntax highlighter) ===== */
|
||||
|
||||
.SRC_Wrap { height:auto; font-size:12px; }
|
||||
.SRC_Title { text-align:center; color:#555; border-bottom:2px solid #999; font-size:14px; font-family:Verdana, Geneva, sans-serif; padding:5px; font-weight:700; }
|
||||
.SRC_Line { width:100%; background-color:#fafafa; height:28px; line-height: 28px; }
|
||||
.SRC_Line:nth-child(even) { background-color:#f2f2f2; }
|
||||
.SRC_NumBox { min-width: 32px; float:left; border-right: 1px solid #d5d5d5; }
|
||||
.SRC_Num { font-family: Verdana, Geneva, sans-serif; font-size: 12px; text-align:right; color:#555; font-weight:500; padding-right:2px; width:100%; height:auto; min-height:28px; line-height:28px; }
|
||||
.SRC_CodeContent { white-space: pre-wrap; font-size:12px; padding-left:10px; font-family:"Courier New", Courier, monospace; margin:0px; min-height:28px; line-height:28px; }
|
||||
.SRC_NumContent { text-align:right; margin-right:8px; color:#555; }
|
||||
.SRC_CodeBox { padding-left: 32px; }
|
||||
|
||||
.SC_blue { color: blue; }
|
||||
.SC_grey { color: grey; }
|
||||
.SC_navy { color: navy; }
|
||||
.SC_green { color: green; }
|
||||
.SC_orange { color: #930; }
|
||||
.SC_red { color: #F00; }
|
||||
.SC_teal { color: teal; }
|
||||
.SC_gold { color: #FC0; }
|
||||
.SC_pink { color: #ff68a4; }
|
||||
.SC_bold { font-weight: 700; }
|
||||
|
||||
|
||||
|
||||
/* ===== jQuery File tree ===== */
|
||||
|
||||
.jqueryFileTree { font-size: 11px; line-height: 18px; padding: 10px 12px; margin: 0px; overflow: auto; }
|
||||
.jqueryFileTree li > .jqueryFileTree { padding: 0; }
|
||||
.jqueryFileTree > li { list-style: none; padding: 0px; padding-left: 20px; margin: 0px; white-space: nowrap; }
|
||||
.jqueryFileTree a { color: #333; text-decoration: none; display: block; padding: 0px 2px; }
|
||||
.jqueryFileTree a:hover { background: #BDF; }
|
||||
|
||||
/* Core Styles */
|
||||
.jqueryFileTree li.directory { background: url(../images/elements/fileTree/directory.png) left top no-repeat; }
|
||||
.jqueryFileTree li.expanded { background: url(../images/elements/fileTree/folder_open.png) left top no-repeat; }
|
||||
.jqueryFileTree li.file { background: url(../images/elements/fileTree/file.png) left top no-repeat; }
|
||||
.jqueryFileTree li.wait { background: url(../images/elements/fileTree/spinner.gif) left top no-repeat; }
|
||||
|
||||
/* File Extensions*/
|
||||
.jqueryFileTree li.ext_3gp { background: url(../images/elements/fileTree/film.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_afp { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_afpa { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_asp { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_aspx { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_avi { background: url(../images/elements/fileTree/film.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_bat { background: url(../images/elements/fileTree/application.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_bmp { background: url(../images/elements/fileTree/picture.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_c { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_cfm { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_cgi { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_com { background: url(../images/elements/fileTree/application.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_cpp { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_css { background: url(../images/elements/fileTree/css.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_doc { background: url(../images/elements/fileTree/doc.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_exe { background: url(../images/elements/fileTree/application.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_gif { background: url(../images/elements/fileTree/picture.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_fla { background: url(../images/elements/fileTree/flash.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_h { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_htm { background: url(../images/elements/fileTree/html.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_html { background: url(../images/elements/fileTree/html.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_jar { background: url(../images/elements/fileTree/java.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_jpg { background: url(../images/elements/fileTree/picture.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_jpeg { background: url(../images/elements/fileTree/picture.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_js { background: url(../images/elements/fileTree/script.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_lasso { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_log { background: url(../images/elements/fileTree/txt.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_m4p { background: url(../images/elements/fileTree/music.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_mov { background: url(../images/elements/fileTree/film.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_mp3 { background: url(../images/elements/fileTree/music.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_mp4 { background: url(../images/elements/fileTree/film.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_mpg { background: url(../images/elements/fileTree/film.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_mpeg { background: url(../images/elements/fileTree/film.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_ogg { background: url(../images/elements/fileTree/music.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_pcx { background: url(../images/elements/fileTree/picture.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_pdf { background: url(../images/elements/fileTree/pdf.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_php { background: url(../images/elements/fileTree/php.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_png { background: url(../images/elements/fileTree/picture.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_ppt { background: url(../images/elements/fileTree/ppt.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_psd { background: url(../images/elements/fileTree/psd.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_pl { background: url(../images/elements/fileTree/script.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_py { background: url(../images/elements/fileTree/script.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_rb { background: url(../images/elements/fileTree/ruby.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_rbx { background: url(../images/elements/fileTree/ruby.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_rhtml { background: url(../images/elements/fileTree/ruby.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_rpm { background: url(../images/elements/fileTree/linux.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_ruby { background: url(../images/elements/fileTree/ruby.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_sql { background: url(../images/elements/fileTree/db.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_swf { background: url(../images/elements/fileTree/flash.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_tif { background: url(../images/elements/fileTree/picture.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_tiff { background: url(../images/elements/fileTree/picture.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_txt { background: url(../images/elements/fileTree/txt.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_vb { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_wav { background: url(../images/elements/fileTree/music.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_wmv { background: url(../images/elements/fileTree/film.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_xls { background: url(../images/elements/fileTree/xls.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_xml { background: url(../images/elements/fileTree/code.png) left top no-repeat; }
|
||||
.jqueryFileTree li.ext_zip { background: url(../images/elements/fileTree/zip.png) left top no-repeat; }
|
||||
|
||||
|
||||
/* ===== jQuery jGrowl ===== */
|
||||
|
||||
div.jGrowl { z-index: 9999; color: #fff; font-size: 12px; }
|
||||
div.ie6 { position: absolute; }
|
||||
div.ie6.top-right { right: auto; bottom: auto; left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' ); top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' ); }
|
||||
div.ie6.top-left { left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' ); top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' ); }
|
||||
div.ie6.bottom-right { left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' ); top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' ); }
|
||||
div.ie6.bottom-left { left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' ); top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' ); }
|
||||
div.ie6.center { left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' ); top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' ); width: 100%; }
|
||||
div.jGrowl { position: absolute; }
|
||||
body > div.jGrowl { position: fixed; }
|
||||
div.jGrowl.top-left { left: 0px; top: 0px; }
|
||||
div.jGrowl.top-right { right: 0px; top: 0px; }
|
||||
div.jGrowl.bottom-left { left: 0px; bottom: 0px; }
|
||||
div.jGrowl.bottom-right { right: 0px; bottom: 0px; }
|
||||
div.jGrowl.center { top: 0px; width: 50%; left: 25%; }
|
||||
div.center div.jGrowl-notification, div.center div.jGrowl-closer { margin-left:auto; margin-right:auto; }
|
||||
div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer { background: url(../images/backgrounds/sidebar.jpg); box-shadow: 0 1px 3px #909090; -webkit-box-shadow: 0 1px 3px #909090; -moz-box-shadow: 0 1px 3px #909090; opacity: .90; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=90); zoom: 1; width: 235px; padding: 8px 15px; margin-top:5px; margin-bottom:5px; font-family: Arial, Helvetica, sans-serif; font-size: 1em; text-align:left; display: none; -moz-border-radius: 5px; -webkit-border-radius: 5px; }
|
||||
div.jGrowl div.jGrowl-notification { min-height:40px; }
|
||||
div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {margin: 10px;}
|
||||
div.jGrowl div.jGrowl-notification div.jGrowl-header { font-weight: bold; font-size: 12px; }
|
||||
div.jGrowl div.jGrowl-notification div.jGrowl-close {z-index: 99; float: right; font-weight: bold; font-size: 1em; cursor: pointer; }
|
||||
div.jGrowl div.jGrowl-closer { padding-top: 4px; padding-bottom: 4px; cursor: pointer; font-size: .9em; font-weight: bold; text-align: center; }
|
||||
|
||||
/** Hide jGrowl when printing **/
|
||||
@media print { div.jGrowl { display: none; } }
|
||||
|
||||
|
||||
/* ===== Color picker ===== */
|
||||
|
||||
.cPicker span { margin-left: 36px; font-size: 11px; white-space: nowrap; padding-top: 2px; display: block; }
|
||||
#cPicker { position: relative; }
|
||||
#cPicker div { position: absolute; top: 0px; left: 0px; width: 24px; height: 24px; background: url(../images/elements/colorPicker/select.png) center no-repeat; cursor: pointer; }
|
||||
.colorpicker { width: 356px; height: 176px; overflow: hidden; position: absolute; background: url(../images/elements/colorPicker/colorpicker_background.png); font-family: Arial, Helvetica, sans-serif; display: none; }
|
||||
.colorpicker_color { width: 150px; height: 150px; left: 14px; top: 13px; position: absolute; background: #f00; overflow: hidden; cursor: crosshair; }
|
||||
.colorpicker_color div { position: absolute; top: 0; left: 0; width: 150px; height: 150px; background: url(../images/elements/colorPicker/colorpicker_overlay.png); }
|
||||
.colorpicker_color div div { position: absolute; top: 0; left: 0; width: 11px; height: 11px; overflow: hidden; background: url(../images/elements/colorPicker/colorpicker_select.gif); margin: -5px 0 0 -5px; }
|
||||
.colorpicker_hue { position: absolute; top: 13px; left: 171px; width: 35px; height: 150px; cursor: n-resize; }
|
||||
.colorpicker_hue div { position: absolute; width: 35px; height: 9px; overflow: hidden; background: url(../images/elements/colorPicker/colorpicker_indic.gif) left top; margin: -4px 0 0 0; left: 0px; }
|
||||
.colorpicker_new_color { position: absolute; width: 60px; height: 30px; left: 213px; top: 13px; background: #f00; }
|
||||
.colorpicker_current_color { position: absolute; width: 60px; height: 30px; left: 283px; top: 13px; background: #f00; }
|
||||
.colorpicker input { background: none!important; height: auto!important; border: none!important; position: absolute; font-size: 10px!important; font-family: Arial, Helvetica, sans-serif; color: #898989!important; top: 5px; right: 11px; text-align: right; margin: 0; padding: 0!important; height: 11px; box-shadow: none!important; }
|
||||
.colorpicker_hex { position: absolute; width: 72px; height: 22px; background: url(../images/elements/colorPicker/colorpicker_hex.png) top; left: 212px; top: 142px; }
|
||||
.colorpicker_hex input { right: 6px; }
|
||||
.colorpicker_field { height: 22px; width: 62px; background-position: top; position: absolute; }
|
||||
.colorpicker_field span { position: absolute; width: 12px; height: 22px; overflow: hidden; top: 0; right: 0; cursor: n-resize; }
|
||||
.colorpicker_rgb_r { background-image: url(../images/elements/colorPicker/colorpicker_rgb_r.png); top: 52px; left: 212px; }
|
||||
.colorpicker_rgb_g { background-image: url(../images/elements/colorPicker/colorpicker_rgb_g.png); top: 82px; left: 212px; }
|
||||
.colorpicker_rgb_b { background-image: url(../images/elements/colorPicker/colorpicker_rgb_b.png); top: 112px; left: 212px; }
|
||||
.colorpicker_hsb_h { background-image: url(../images/elements/colorPicker/colorpicker_hsb_h.png); top: 52px; left: 282px; }
|
||||
.colorpicker_hsb_s { background-image: url(../images/elements/colorPicker/colorpicker_hsb_s.png); top: 82px; left: 282px; }
|
||||
.colorpicker_hsb_b { background-image: url(../images/elements/colorPicker/colorpicker_hsb_b.png); top: 112px; left: 282px; }
|
||||
.colorpicker_submit { position: absolute; width: 22px; height: 22px; background: url(../images/elements/colorPicker/colorpicker_submit.png) top; left: 322px; top: 142px; overflow: hidden; }
|
||||
.colorpicker_focus { background-position: center; }
|
||||
.colorpicker_hex.colorpicker_focus { background-position: bottom; }
|
||||
.colorpicker_submit.colorpicker_focus { background-position: bottom; }
|
||||
.colorpicker_slider { background-position: bottom; }
|
||||
|
||||
|
||||
/* ===== Rounded progress bars ===== */
|
||||
|
||||
.roundDashed { width: 90px; height: 90px; }
|
||||
.roundSolid { width: 92px; height: 92px; }
|
||||
.roundSolid > .jCProgress > div.percent { width: 92px; }
|
||||
.jCProgress { position: absolute; z-index: 99; }
|
||||
.jCProgress > div.percent { font-size: 20px; color:#6b6b6b; text-shadow: 0 1px 1px #fff; font-weight: bold; position:absolute; margin-top:35px; text-align: center; width: 90px; }
|
||||
|
||||
|
||||
|
||||
/* ===== File uploader ===== */
|
||||
|
||||
.plupload_buttons { margin: 7px 0; }
|
||||
.plupload_header { display: none; }
|
||||
.plupload_start { float: left; margin-left: 10px;}
|
||||
.plupload_start span { background: url(../images/upload.png) no-repeat 10px; padding: 5px 13px 6px 26px; display: block; }
|
||||
.plupload_disabled, a.plupload_disabled:hover { color: #a6a6a6!important; border: 1px solid #d5d5d5!important; background: #e5e5e5!important; box-shadow: none!important; -moz-box-shadow: none!important; text-shadow: none!important; cursor: default!important; }
|
||||
.plupload_disabled span { padding: 5px 13px 6px 13px; }
|
||||
.plupload_add { float: left; }
|
||||
.plupload_add span { background: url(../images/add.png) no-repeat 10px; padding: 5px 13px 6px 26px; display: block; }
|
||||
.plupload_wrapper { font-size: 11px;; width: 100%; }
|
||||
.plupload_container input { border: 1px solid #DDD; font-size: 11px; width: 98%; }
|
||||
.plupload_filelist { margin: 0; padding: 0; list-style: none; }
|
||||
.plupload_scroll .plupload_filelist { height: 185px; overflow-y: scroll; }
|
||||
.plupload_filelist li { padding: 10px 12px; background: whiteSmoke; border-bottom: 1px solid #E7E7E7; }
|
||||
.plupload_filelist li:hover { background-color: #f8f8f8; }
|
||||
.plupload_filelist_header, .plupload_filelist_footer { background: #EFEFEF; padding: 3px 0 3px 12px; color: #878787; }
|
||||
.plupload_filelist_header { border-bottom: 1px solid #d5d5d5; }
|
||||
.plupload_filelist_footer { border-top: 1px solid #D5D5D5; line-height: 30px; vertical-align: middle; }
|
||||
.plupload_filelist_footer .plupload_file_size, .plupload_filelist_footer .plupload_file_status, .plupload_filelist_footer .plupload_progress, .plupload_filelist_footer .plupload_file_action { margin-top: 8px; }
|
||||
.plupload_file_name { float: left; overflow: hidden; }
|
||||
.plupload_file_status { color: #777; }
|
||||
.plupload_file_status span {}
|
||||
.plupload_file_size, .plupload_file_status, .plupload_progress { float: right; width: 80px; }
|
||||
.plupload_file_size, .plupload_file_status, .plupload_file_action { text-align: right; }
|
||||
.plupload_filelist .plupload_file_name { width: 205px; }
|
||||
.plupload_file_action { float: right; width: 14px; margin-top: 4px; height: 14px; margin-left: 15px; }
|
||||
.plupload_file_action * { display: none; width: 14px; height: 14px; }
|
||||
li.plupload_done { color: #AAA; }
|
||||
li.plupload_delete a { background: url(../images/elements/uploader/deleteFile.png) no-repeat 0; }
|
||||
li.plupload_failed a { background: url(../images/elements/uploader/error.png) no-repeat 0; cursor: default; }
|
||||
li.plupload_done a { background: url(../images/elements/uploader/uploaded.png) no-repeat 0; cursor: default; }
|
||||
.plupload_progress, .plupload_upload_status { display: none; }
|
||||
.plupload_progress_container { margin-top: 10px; border: 1px solid #CCC; background: #FFF; padding: 1px; }
|
||||
.plupload_progress_bar { width: 0px; height: 7px; background: #CDEB8B; }
|
||||
.plupload_scroll .plupload_filelist_header .plupload_file_action, .plupload_scroll .plupload_filelist_footer .plupload_file_action { margin-right: 17px; }
|
||||
.plupload_clear,.plupload_clearer { clear: both; }
|
||||
.plupload_clearer, .plupload_progress_bar { display: block; font-size: 0; line-height: 0; }
|
||||
li.plupload_droptext { background: url(../images/elements/uploader/drag.png) no-repeat 50%; text-align: center; vertical-align: middle; border: 0; line-height: 165px; text-indent: -9999px; }
|
||||
|
||||
|
||||
|
||||
/* ===== WYSUWYG editor ===== */
|
||||
|
||||
.cleditorMain iframe { border:none; margin:0; padding:0 }
|
||||
.cleditorMain textarea { border: none!important; margin: 0; resize: none; outline: none; height: 127px; box-shadow: none!important; font-size: 12px; padding: 10px; color: #363636; }
|
||||
.cleditorToolbar {background: url('../images/elements/wysiwyg/toolbar.gif') repeat}
|
||||
.cleditorGroup {float:left; height:26px}
|
||||
.cleditorButton {float:left; width:24px; height:24px; margin:1px 0 1px 0; background: url('../images/elements/wysiwyg/buttons.gif')}
|
||||
.cleditorDisabled {opacity:0.3; filter:alpha(opacity=30)}
|
||||
.cleditorDivider {float:left; width:1px; height:23px; margin:1px 0 1px 0; background:#CCC}
|
||||
.cleditorPopup {border:solid 1px #999; background-color:white; position:absolute; font:10pt Arial,Verdana; cursor:default; z-index:10000}
|
||||
.cleditorList div {padding:2px 4px 2px 4px}
|
||||
.cleditorColor {width:150px; padding:1px 0 0 1px}
|
||||
.cleditorColor div {float:left; width:14px; height:14px; margin:0 1px 1px 0}
|
||||
.cleditorPrompt {background-color:#F6F7F9; padding: 10px; font-size:8.5pt}
|
||||
.cleditorPrompt input[type=text],
|
||||
.cleditorPrompt textarea {font:8.5pt Arial,Verdana; width: auto; margin: 5px 0;}
|
||||
.cleditorMsg {background-color:#FDFCEE; width:150px; padding:4px; font-size:8.5pt}
|
||||
|
||||
|
||||
|
||||
/* ===== Dual select boxes ===== */
|
||||
|
||||
.dualBoxes { padding: 22px 16px; position: relative; }
|
||||
.dualBtn { padding: 0 8px; line-height: 24px; font-size: 11px; cursor: pointer; border: 1px solid #d5d5d5; color: #525252; margin-left: -1px; height: 26px; }
|
||||
.leftBox, .rightBox { width: 40%; position: relative; }
|
||||
.leftBox { float: left; }
|
||||
.rightBox { float: right; }
|
||||
.fltr { position: absolute; right: 0; top: 5px; font-size: 12px; }
|
||||
.boxFilter { margin-bottom: 15px; }
|
||||
.dualControl { text-align: center; width: 90px; margin: 150px 1px; position: absolute; left: 50%; margin-left: -45px; }
|
||||
.countLabel { color: gray; font-style:italic; margin-top: 10px; display: block; }
|
||||
.storageBox { display:none; }
|
||||
.copiedOption { background-color: Yellow; }
|
||||
.boxFilter { background: white; height: 26px; width: 100%; border: 1px solid #D5D5D5; padding: 6px 8px; font-size: 11px; font-family: Arial, Helvetica, sans-serif; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; margin-top: 5px; }
|
||||
|
||||
|
||||
|
||||
/* ===== Chosen multiple select plugin with dropdown ===== */
|
||||
|
||||
.chzn-container { position: relative; display: inline-block; zoom: 1; *display: inline; max-width: 100%; }
|
||||
.noSearch .chzn-search, .searchDrop .selector, .noSearch .selector { display: none; }
|
||||
.noSearch .chzn-results { margin: 0!important; padding: 2px!important; }
|
||||
.chzn-container > .chzn-drop { background: #fff; border: 1px solid #d5d5d5; border-top: 0; position: absolute; top: 29px; margin-top: 1px; left: 0; z-index: 998; width: 100%!important; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
|
||||
.chzn-container-single .chzn-single { border: 1px solid #d8d8d8; display: block; overflow: hidden; white-space: nowrap; position: relative; color: #808080; text-shadow: 0 1px #f5f5f5; height: 27px; line-height: 27px; padding: 0 0 0 10px; background: #fcfcfc; background: -moz-linear-gradient(top, #fcfcfc 0%, #f1f1f1 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#f1f1f1)); background: -webkit-linear-gradient(top, #fcfcfc 0%,#f1f1f1 100%); background: -o-linear-gradient(top, #fcfcfc 0%,#f1f1f1 100%); background: -ms-linear-gradient(top, #fcfcfc 0%,#f1f1f1 100%); background: linear-gradient(top, #fcfcfc 0%,#f1f1f1 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#f1f1f1',GradientType=0 ); border: 1px solid #d2d2d2; box-sizing: content-box; border-radius: 2px; -webkit-border-radius: 2px; -moz-border-radius: 2px; box-shadow: 0 1px 0 #fff inset, 0 1px 0px #eeeeee; -webkit-box-shadow: 0 1px 0 #fff inset, 0 1px 0px #eeeeee; -moz-box-shadow: 0 1px 0 #fff inset, 0 1px 0px #eeeeee; }
|
||||
.chzn-container-single .chzn-single span { display: block; font-size: 11px; padding-right: 30px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; -ms-text-overflow: ellipsis; text-overflow: ellipsis; background: url(../images/elements/forms/selectArrow.png) no-repeat 100%; }
|
||||
.chzn-container-single .chzn-single abbr { display: block; position: absolute; right: 26px; top: 6px; width: 12px; height: 13px; font-size: 1px; }
|
||||
.chzn-container-single .chzn-single div { position: absolute; right: -1px; top: -1px; display: block; height: 27px; width: 27px; }
|
||||
.chzn-container-single .chzn-single div b { display: block; width: 27px; height: 28px; }
|
||||
.chzn-container-single .chzn-search { padding: 3px 4px; position: relative; margin: 0; white-space: nowrap; z-index: 1010; }
|
||||
.chzn-container-single .chzn-search input { margin: 1px 0; padding: 4px 20px 4px 5px; outline: 0; border: 1px solid #aaa; font-family: sans-serif; font-size: 11px; background: url(../images/searchSmall.png) no-repeat 98% !important; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; max-width: 100%; min-width: 100%; }
|
||||
.chzn-container-single-nosearch .chzn-search input { position: absolute; left: -9000px; }
|
||||
.chzn-container-multi .chzn-choices { border: 1px solid #ddd; margin: 0; cursor: text; overflow: hidden; height: auto !important; height: 1%; position: relative; font-size: 12px; padding: 4px; background: white; color: #656565; }
|
||||
.chzn-container-multi .chzn-choices li { float: left; list-style: none; }
|
||||
.chzn-container-multi .chzn-choices .search-field { white-space: nowrap; margin: 0; padding: 0; }
|
||||
.chzn-container-multi .chzn-choices .search-field input { color: #666; background: transparent !important; border: 0 !important; font-family: sans-serif; font-size: 12px!important; padding: 11px 4px 10px 4px!important; margin: 0; outline: 0; box-shadow: none!important; }
|
||||
.chzn-container-multi .chzn-choices .search-field .default { color: #999; }
|
||||
.chzn-container-multi .chzn-choices .search-choice { position: relative; line-height: 16px; font-size: 11px; border: 1px solid #A5D24A; display: block; float: left; padding: 5px 24px 5px 8px; background: #CDE69C; color: #638421; margin: 4px; }
|
||||
.chzn-container-multi .chzn-choices .search-choice-focus { background: #d4d4d4; }
|
||||
.chzn-container-multi .chzn-choices .search-choice .search-choice-close { display: block; position: absolute; right: 6px; top: 8px; width: 10px; height: 10px; font-size: 1px; background: url(../images/elements/forms/closeSelection.png) 50% no-repeat; }
|
||||
.chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close { background-position: right -11px; }
|
||||
.chzn-container .chzn-results { margin: 0 4px 4px 0; max-height: 240px; padding: 0 0 0 4px; position: relative; overflow-x: hidden; overflow-y: auto; }
|
||||
.chzn-container-multi .chzn-results { padding: 0; margin: 0; }
|
||||
.chzn-container .chzn-results li { display: none; line-height: 14px; padding: 5px 6px; margin: 0; list-style: none; font-size: 11px; }
|
||||
.chzn-container .chzn-results .active-result { cursor: pointer; display: list-item; }
|
||||
.chzn-container .chzn-results .highlighted { background-color: #3875d7; color: #fff; }
|
||||
.chzn-container .chzn-results li em { background: #feffde; font-style: normal; }
|
||||
.chzn-container .chzn-results .highlighted em { background: transparent; }
|
||||
.chzn-container .chzn-results .no-results { background: #f4f4f4; display: list-item; }
|
||||
.chzn-container .chzn-results .group-result { cursor: default; color: #2e74a6; font-weight: bold; font-size: 10px; border-bottom: 1px solid #DDD; border-top: 1px solid #DDD; }
|
||||
.chzn-container .chzn-results .group-option { padding-left: 15px; }
|
||||
.chzn-container-multi .chzn-drop .result-selected { display: none; }
|
||||
.chzn-container .chzn-results-scroll { background: white; margin: 0 4px; position: absolute; text-align: center; width: 321px; /* This should be dynamic with js */ z-index: 1; }
|
||||
.chzn-container .chzn-results-scroll span { display: inline-block; height: 17px; text-indent: -5000px; width: 9px; }
|
||||
.chzn-container .chzn-results-scroll-down { bottom: 0; }
|
||||
.chzn-container-active .chzn-single-with-drop div { background: transparent; border-left: none; }
|
||||
.chzn-container-active .chzn-choices { border: 1px solid #d5d5d5; }
|
||||
.chzn-container-active .chzn-choices .search-field input { color: #111 !important; }
|
||||
.chzn-disabled { cursor: default; opacity:0.5 !important; }
|
||||
.chzn-disabled .chzn-single { cursor: default; }
|
||||
.chzn-disabled .chzn-choices .search-choice .search-choice-close { cursor: default; }
|
||||
|
||||
|
||||
|
||||
/* ===== Datatables ===== */
|
||||
|
||||
table.dataTable { margin: 0 auto; clear: both; width: 100%; }
|
||||
table.dataTable thead th { padding: 3px 18px 2px 10px; font-weight: normal; color: #909090; cursor: pointer; *cursor: hand; font-size: 11px; box-shadow: 0 1px 0px #fff inset; -webkit-box-shadow: 0 1px 0px #fff inset; -moz-box-shadow: 0 1px 0px #fff inset; }
|
||||
table.dataTable tfoot th { padding: 3px 18px 3px 10px;font-weight: bold; }
|
||||
table.dataTable td { padding: 7px 11px; }
|
||||
table.dataTable td.center, table.dataTable td.dataTables_empty { text-align: center; }
|
||||
table.dataTable tbody tr td, table.dataTable thead tr th { border-left: 1px solid #dfdfdf; }
|
||||
table.dataTable tbody tr td:first-child, table.dataTable thead tr th:first-child { border-left: none; }
|
||||
table.dataTable thead tr:first-child { margin: 0; padding: 0; border-top: none; }
|
||||
table.dataTable tr { border-top: 1px solid #dfdfdf; }
|
||||
table.dataTable tr.odd { }
|
||||
table.dataTable tr.even { background-color: #f2f2f2; }
|
||||
|
||||
tr.odd.gradeA td.sorting_1 { background-color: #f4f4f4; }
|
||||
tr.odd.gradeA td.sorting_2 { background-color: #d1ffd1; }
|
||||
tr.odd.gradeA td.sorting_3 { background-color: #d1ffd1; }
|
||||
tr.even.gradeA td.sorting_1 { background-color: #efefef; }
|
||||
tr.even.gradeA td.sorting_2 { background-color: #e2ffe2; }
|
||||
tr.even.gradeA td.sorting_3 { background-color: #e2ffe2; }
|
||||
tr.odd.gradeC td.sorting_1 { background-color: #c4c4ff; }
|
||||
tr.odd.gradeC td.sorting_2 { background-color: #d1d1ff; }
|
||||
tr.odd.gradeC td.sorting_3 { background-color: #d1d1ff; }
|
||||
tr.even.gradeC td.sorting_1 { background-color: #d5d5ff; }
|
||||
tr.even.gradeC td.sorting_2 { background-color: #e2e2ff; }
|
||||
tr.even.gradeC td.sorting_3 { background-color: #e2e2ff; }
|
||||
|
||||
.dataTables_wrapper { position: relative; clear: both; *zoom: 1; }
|
||||
.dataTables_length { float: right; margin-top: 15px; }
|
||||
.showentries { float: left; margin: 4px 15px 0 0; }
|
||||
.dataTables_filter { float: left; font-size: 11px; text-align: left; margin: 18px 0; position: relative; }
|
||||
.dataTables_filter label > span { display: block; float: left; padding-top: 1px; }
|
||||
.dataTables_filter input[type=text] { padding: 5px 20px 5px 7px; margin-left: 15px; width: 180px; background: #f9f9f9; box-shadow: 0 1px 0 #fff; -webkit-box-shadow: 0 1px 0 #fff; -moz-box-shadow: 0 1px 0 #fff; border: 1px solid #d7d7d7; }
|
||||
.dataTables_info { float: left; padding: 6px 0; }
|
||||
.tableFooter { clear: both; padding: 8px 12px; height: 36px; font-size: 11px; color: #636363; border-top: 1px solid #cdcdcd; -webkit-border-bottom-right-radius: 3px; -webkit-border-bottom-left-radius: 3px; -moz-border-radius-bottomright: 3px; -moz-border-radius-bottomleft: 3px; background: #f8f8f8; background: -moz-linear-gradient(top, #f8f8f8 0%, #efefef 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#efefef)); background: -webkit-linear-gradient(top, #f8f8f8 0%,#efefef 100%); background: -o-linear-gradient(top, #f8f8f8 0%,#efefef 100%); background: -ms-linear-gradient(top, #f8f8f8 0%,#efefef 100%); background: linear-gradient(top, #f8f8f8 0%,#efefef 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#efefef',GradientType=0 ); }
|
||||
.tableFooter .loading { float: left; padding: 0 6px; }
|
||||
|
||||
.hiddenpars .tablePars { display: none; }
|
||||
.shownpars .tablePars { display: block; }
|
||||
.tablePars { border-bottom: 1px solid #D5D5D5; height: 61px; box-shadow: 0 1px 0 #fff inset; -webkit-box-shadow: 0 1px 0 #fff inset; -moz-box-shadow: 0 1px 0 #fff inset; clear: both; padding: 0 16px; font-size: 11px; color: #636363; background: url(../images/backgrounds/alt.png); }
|
||||
|
||||
.dataTables_paginate { float: right; margin-top: 7px; }
|
||||
.dataTables_paginate .last { margin-right: 0!important; }
|
||||
|
||||
/* Two button pagination - previous / next */
|
||||
.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next { height: 19px; float: left; cursor: pointer; *cursor: hand; color: #111 !important; }
|
||||
.paginate_disabled_previous:hover, .paginate_enabled_previous:hover, .paginate_disabled_next:hover, .paginate_enabled_next:hover { text-decoration: none !important; }
|
||||
.paginate_disabled_previous:active, .paginate_enabled_previous:active, .paginate_disabled_next:active, .paginate_enabled_next:active { outline: none; }
|
||||
.paginate_disabled_previous, .paginate_disabled_next { color: #666 !important; }
|
||||
.paginate_disabled_previous, .paginate_enabled_previous { padding-left: 23px; }
|
||||
.paginate_disabled_next, .paginate_enabled_next { padding-right: 23px; margin-left: 10px; }
|
||||
.paginate_enabled_previous { background: url('../images/tables/back_enabled.png') no-repeat top left; }
|
||||
.paginate_enabled_previous:hover { background: url('../images/tables/back_enabled_hover.png') no-repeat top left; }
|
||||
.paginate_disabled_previous { background: url('../images/tables/back_disabled.png') no-repeat top left; }
|
||||
.paginate_enabled_next { background: url('../images/tables/forward_enabled.png') no-repeat top right; }
|
||||
.paginate_enabled_next:hover { background: url('../images/tables/forward_enabled_hover.png') no-repeat top right; }
|
||||
.paginate_disabled_next { background: url('../images/tables/forward_disabled.png') no-repeat top right; }
|
||||
|
||||
/* Full number pagination */
|
||||
.paging_full_numbers { height: 22px; line-height: 22px; }
|
||||
.paging_full_numbers .next:active, .paging_full_numbers .first:active, .paging_full_numbers .previous:active, .paging_full_numbers .last:active { font-weight: normal!important; }
|
||||
.paging_full_numbers a:active { outline: none }
|
||||
.paging_full_numbers a:hover { text-decoration: none; }
|
||||
.paging_full_numbers a.paginate_button, .paging_full_numbers a.paginate_active { border: 1px solid #d3d3d3; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; padding: 4px 7px; margin: 0 3px; cursor: pointer; *cursor: hand; color: #919191; font-size: 11px; box-shadow: 0 1px 0 #fff inset, 0 1px 0px #dfdfdf; -webkit-box-shadow: 0 1px 0 #fff inset, 0 1px 0px #dfdfdf; -moz-box-shadow: 0 1px 0 #fff inset, 0 1px 0px #dfdfdf; }
|
||||
.paging_full_numbers a.paginate_button { background: #f9f9f9; background: -moz-linear-gradient(top, #f9f9f9 0%, #eeeeee 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#eeeeee)); background: -webkit-linear-gradient(top, #f9f9f9 0%,#eeeeee 100%); background: -o-linear-gradient(top, #f9f9f9 0%,#eeeeee 100%); background: -ms-linear-gradient(top, #f9f9f9 0%,#eeeeee 100%); background: linear-gradient(top, #f9f9f9 0%,#eeeeee 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#eeeeee',GradientType=0 ); }
|
||||
.paging_full_numbers a.paginate_button:hover { background: #f6f6f6; background: -moz-linear-gradient(top, #f6f6f6 0%, #e8e8e8 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6f6f6), color-stop(100%,#e8e8e8)); background: -webkit-linear-gradient(top, #f6f6f6 0%,#e8e8e8 100%); background: -o-linear-gradient(top, #f6f6f6 0%,#e8e8e8 100%); background: -ms-linear-gradient(top, #f6f6f6 0%,#e8e8e8 100%); background: linear-gradient(top, #f6f6f6 0%,#e8e8e8 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f6f6', endColorstr='#e8e8e8',GradientType=0 ); }
|
||||
.paging_full_numbers a.paginate_active, .paging_full_numbers a.paginate_button:active { background: #6f6f6f; color: #fff; border-color: #646464; box-shadow: 0 1px 2px #545454 inset, 0 1px 0 #fff; -webkit-box-shadow: 0 1px 2px #545454 inset, 0 1px 0 #fff; -moz-box-shadow: 0 1px 2px #545454 inset, 0 1px 0 #fff; font-weight: bold; }
|
||||
.paginate_button_disabled, .paginate_button_disabled:active { background: #eaeaea!important; color: #c5c5c5!important; box-shadow: none!important; font-weight: normal!important; }
|
||||
.paginate_button_disabled:active { border-color: #d3d3d3!important; }
|
||||
|
||||
.dataTables_processing { position: absolute; top: 50%; left: 50%; width: 250px; height: 30px; margin-left: -125px; margin-top: -15px; padding: 14px 0 2px 0; border: 1px solid #ddd; text-align: center; color: #999; font-size: 14px; background-color: white; }
|
||||
.sorting { background: #eee url('../images/tables/sort_both.png') no-repeat center right; }
|
||||
.sorting_asc { background: #eee url('../images/tables/sort_asc.png') no-repeat center right; }
|
||||
.sorting_desc { background: #eee url('../images/tables/sort_desc.png') no-repeat center right; }
|
||||
.sorting_asc_disabled { background: url('../images/tables/sort_asc_disabled.png') no-repeat center right; }
|
||||
.sorting_desc_disabled { background: url('../images/tables/sort_desc_disabled.png') no-repeat center right; }
|
||||
table.dataTable th:active { outline: none; }
|
||||
.dataTables_scroll { clear: both; }
|
||||
.dataTables_scrollBody { *margin-top: -1px; -webkit-overflow-scrolling: touch; }
|
||||
|
||||
|
||||
|
||||
|
||||
/* ===== iPhone like checkboxes ===== */
|
||||
|
||||
.whead .on_off { padding: 9px 9px 7px 9px; float: right; }
|
||||
.whead .on_off .ibutton-container { float: right; }
|
||||
.whead .on_off [class^="icon-"], .whead .on_off [class*=" icon-"] { margin-top: 3px; display: block; float: left; }
|
||||
.on_off .ibutton-label-off span { background: url(../images/elements/checkboxes/no.png) no-repeat; width: 8px; height: 9px; position: relative; left: -4px; display: block; float: right; padding-top: 0; margin-top: 2px; padding-right: 7px; text-indent: -9999px; }
|
||||
.on_off .ibutton-label-on span { background: url(../images/elements/checkboxes/yes.png) no-repeat; width: 11px; left: -1px; position: relative; height: 11px; display: block; float: right; padding-top: 0px; margin-top: 1px; padding-right: 7px; }
|
||||
.on_off .ibutton-label-off { color: #fff; background-position: 100% 0; text-shadow: 0 1px #808080; text-align: right; right: 0; width: 95%; }
|
||||
.on_off .ibutton-container { height: 21px; }
|
||||
.on_off .ibutton-label-on { color: #fff; text-shadow: 0 1px #808080; left: 0; z-index: 1; background-position: 0 -52px; }
|
||||
.on_off .ibutton-label-off { background-position: 100% -52px; }
|
||||
.on_off .ibutton-label-on, .on_off .ibutton-label-off { height: 21px; }
|
||||
.on_off .ibutton-handle { height: 20px; background-position: 0 -73px; }
|
||||
.on_off .ibutton-handle-right { background: transparent url(../images/elements/checkboxes/ibutton-slider-default.png) no-repeat scroll 100% -73px; }
|
||||
.on_off .ibutton-handle-middle { background: transparent url(../images/elements/checkboxes/ibutton-slider-default.png) no-repeat scroll 50% -73px; }
|
||||
.on_off .ibutton-padding-left, .on_off .ibutton-padding-right { position: absolute; top: 0; z-index: 2; background: transparent url(../images/elements/checkboxes/ibutton-slider-default.png) no-repeat scroll 0 -52px; width: 3px; height: 20px; }
|
||||
.on_off .ibutton-padding-right { background-position: 100% -52px; }
|
||||
|
||||
.ibutton-container { position: relative; height: 26px; cursor: pointer; overflow: hidden; max-width: 400px; -khtml-user-select: none; -o-user-select: none; -moz-user-select: none; -moz-user-focus: ignore; -moz-user-input: disabled; width: 89px; }
|
||||
.ibutton-container input { position: absolute; top: 0; left: 0; filter:alpha(opacity=0); -moz-opacity: 0.0; opacity: 0.0; -moz-user-input: enabled !important; }
|
||||
.ibutton-handle { display: block; height: 25px; cursor: inherit; position: absolute; top: 0; left: 0; width: 0; background: transparent url(../images/elements/checkboxes/ibutton-slider-default.png) no-repeat scroll 0 -26px; z-index: 3; padding-left: 3px; width: 33px; }
|
||||
.ibutton-handle-right { height: 100%; width: 100%; padding-right: 3px; background: transparent url(../images/elements/checkboxes/ibutton-slider-default.png) no-repeat scroll 100% -26px; z-index: 3; }
|
||||
.ibutton-handle-middle { height: 100%; width: 100%; background: transparent url(../images/elements/checkboxes/ibutton-slider-default.png) no-repeat scroll 50% -26px; z-index: 3; }
|
||||
div.ibutton-label-on, div.ibutton-label-off { white-space: nowrap; font-size: 11px; line-height: 18px; font-weight: bold; text-transform: uppercase; cursor: inherit; display: block; height: 26px; position: absolute; width: auto; top: 0; padding-top: 4px; overflow: hidden; text-align: center; background: transparent url(../images/elements/checkboxes/ibutton-slider-default.png) no-repeat scroll 0 0; }
|
||||
div.ibutton-label-on { color: #fff; text-shadow: 0 1px #808080; left: 0; z-index: 1; }
|
||||
div.ibutton-label-on span { padding-left: 0px; }
|
||||
div.ibutton-label-off { color: #fff; background-position: 100% 0; text-shadow: 0 1px #808080; text-align: right; right: 0; width: 95%; }
|
||||
div.ibutton-label-off span label { padding-right: 10px; margin-left: -2px }
|
||||
.ibutton-padding-left { left: 0; }
|
||||
.ibutton-padding-right { right: 0; }
|
||||
.ibutton-disabled { cursor: not-allowed !important; opacity: 0.6; filter:alpha(opacity=60); }
|
||||
|
||||
|
||||
|
||||
|
||||
/* ===== Tipsy ===== */
|
||||
|
||||
.tipsy { padding: 4px; font-size: 11px; position: absolute; z-index: 1000; }
|
||||
.tipsy-inner { padding: 2px 10px 2px 10px; background-color: #1d1d1d; color: white; max-width: 200px; text-align: center; }
|
||||
.tipsy-inner { border-radius: 2px; -moz-border-radius:2px; -webkit-border-radius:2px; }
|
||||
.tipsy-arrow { position: absolute; background: url('../images/tipsy.gif') no-repeat top left; width: 9px; height: 5px; }
|
||||
.tipsy-n .tipsy-arrow { top: 0; left: 50%; margin-left: -4px; }
|
||||
.tipsy-nw .tipsy-arrow { top: 0; left: 10px; }
|
||||
.tipsy-ne .tipsy-arrow { top: 0; right: 10px; }
|
||||
/*.tipsy-s { margin-top: -5px; }
|
||||
.tipsy-w { margin-left: 5px; }
|
||||
.tipsy-e { margin-right: -5px; }
|
||||
.tipsy-n { margin-top: 5px; }*/
|
||||
.tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -4px; background-position: bottom left; }
|
||||
.tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; background-position: bottom left; }
|
||||
.tipsy-se .tipsy-arrow { bottom: 0; right: 10px; background-position: bottom left; }
|
||||
.tipsy-e .tipsy-arrow { top: 50%; margin-top: -4px; right: 0; width: 5px; height: 9px; background-position: top right; }
|
||||
.tipsy-w .tipsy-arrow { top: 50%; margin-top: -4px; left: 0; width: 5px; height: 9px; }
|
133
war/resources/css/reset.css
Normal file
@ -0,0 +1,133 @@
|
||||
|
||||
/* ===== CSS reset ===== */
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; }
|
||||
ul { list-style: none; }
|
||||
blockquote, q { quotes: none; }
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after { content: ''; content: none; }
|
||||
/* remember to define focus styles! */
|
||||
:focus { outline: 0; }
|
||||
/* remember to highlight inserts somehow! padding: 9px 17px 9px 17px; */
|
||||
ins { text-decoration: none; }
|
||||
del { text-decoration: line-through; }
|
||||
/* tables still need 'cellspacing="0"' in the markup */
|
||||
table { border-collapse: collapse; }
|
||||
*, * focus {
|
||||
outline: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
textarea { overflow: auto; }
|
||||
textarea, input, input[type=text], input[type=password] { font-family: Arial, Helvetica, sans-serif; font-size: 11px; }
|
||||
input, textarea { border: none; }
|
||||
button, input[type=submit] { font-family: Arial, Helvetica, sans-serif; }
|
||||
|
||||
img { border: 0; }
|
||||
ul { list-style: none; margin: 0; padding: 0; }
|
||||
p { margin: 0; padding: 0; }
|
||||
:focus { outline: 0; }
|
||||
a { text-decoration: none; color: #2b6893; }
|
||||
|
||||
.normal { font-style: normal; }
|
||||
.normalFont { font-style: normal; font-weight: normal; }
|
||||
|
||||
|
||||
/* ========== Correction classes ========== */
|
||||
.mt40 { margin-top: 40px; }
|
||||
|
||||
.nomargin { margin: 0!important; }
|
||||
|
||||
/* + Correction margins + */
|
||||
.m10 { margin: 10px 0; }
|
||||
.m15 { margin: 15px 0; }
|
||||
.m20 { margin: 20px 0; }
|
||||
|
||||
.mr5 { margin-right: 5px; }
|
||||
.mr10 { margin-right: 10px; }
|
||||
.mr15 { margin-right: 15px; }
|
||||
.mr20 { margin-right: 20px; }
|
||||
.mr25 { margin-right: 25px; }
|
||||
.mr30 { margin-right: 30px; }
|
||||
|
||||
.mb0 { margin-bottom: 0; }
|
||||
.mb5 { margin-bottom: 5px; }
|
||||
.mb10 { margin-bottom: 10px; }
|
||||
.mb15 { margin-bottom: 15px; }
|
||||
.mb20 { margin-bottom: 20px; }
|
||||
.mb25 { margin-bottom: 25px; }
|
||||
.mb30 { margin-bottom: 30px; }
|
||||
.mb40 { margin-bottom: 40px; }
|
||||
|
||||
|
||||
.mt0 { margin-top: 0!important; }
|
||||
.mt5 { margin-top: 5px; }
|
||||
.mt8 { margin-top: 8px; }
|
||||
.mt10 { margin-top: 10px; }
|
||||
.mt12 { margin-top: 12px; }
|
||||
.mt15 { margin-top: 15px; }
|
||||
.mt20 { margin-top: 20px; }
|
||||
.mt25 { margin-top: 25px; }
|
||||
.mt30 { margin-top: 30px; }
|
||||
.mt35 { margin-top: 35px; }
|
||||
|
||||
|
||||
.ml5 { margin-left: 5px; }
|
||||
.ml10 { margin-left: 10px; }
|
||||
.ml15 { margin-left: 15px; }
|
||||
.ml20 { margin-left: 20px; }
|
||||
.ml25 { margin-left: 25px; }
|
||||
.ml30 { margin-left: 30px; }
|
||||
|
||||
|
||||
.mr5 { margin-right: 5px; }
|
||||
.mr10 { margin-right: 10px; }
|
||||
.mr15 { margin-right: 15px; }
|
||||
.mr20 { margin-right: 20px; }
|
||||
.mr25 { margin-right: 25px; }
|
||||
.mr30 { margin-right: 30px; }
|
||||
|
||||
|
||||
|
||||
/* + Correction paddings + */
|
||||
.pb0 { padding-bottom: 0!important; }
|
||||
.pb5 { padding-bottom: 5px; }
|
||||
.pb10 { padding-bottom: 10px; }
|
||||
.pb15 { padding-bottom: 15px; }
|
||||
.pb20 { padding-bottom: 20px; }
|
||||
.pb25 { padding-bottom: 25px; }
|
||||
.pb30 { padding-bottom: 30px; }
|
||||
|
||||
.pt0 { padding-top: 0; }
|
||||
.pt5 { padding-top: 5px; }
|
||||
.pt10 { padding-top: 10px; }
|
||||
.pt15 { padding-top: 15px; }
|
||||
.pt20 { padding-top: 20px; }
|
||||
.pt25 { padding-top: 25px; }
|
||||
.pt30 { padding-top: 30px; }
|
||||
|
||||
|
||||
input::-moz-focus-inner /*Remove button padding in FF*/
|
||||
{
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
button::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border: 0
|
||||
}
|
||||
|
||||
a.button::-moz-focus-inner /*Remove button padding in FF*/
|
||||
{
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
2449
war/resources/css/styles.css
Normal file
586
war/resources/css/ui_custom.css
Normal file
@ -0,0 +1,586 @@
|
||||
/*
|
||||
* jQuery UI CSS Framework @VERSION
|
||||
*
|
||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Theming/API
|
||||
*/
|
||||
|
||||
/* Layout helpers
|
||||
----------------------------------*/
|
||||
.ui-helper-hidden { display: none; }
|
||||
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
|
||||
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
||||
.ui-helper-clearfix:after { content: "."; display: block; height: 0; /*clear: both;*/ visibility: hidden; }
|
||||
.ui-helper-clearfix { display: inline-block; }
|
||||
* html .ui-helper-clearfix { height:1%; }
|
||||
.ui-helper-clearfix { display:block; }
|
||||
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
||||
.ui-state-disabled { cursor: default !important; }
|
||||
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
||||
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
||||
|
||||
|
||||
/* Component containers
|
||||
----------------------------------*/
|
||||
.ui-widget { font-size: 12px; }
|
||||
.ui-widget .ui-widget { font-size: 1em; }
|
||||
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-size: 11px; }
|
||||
.ui-widget-content { background: #fafafa; /*border: 1px solid #CDCDCD;*/ box-shadow: 0 2px 2px -2px #ccc; }
|
||||
.ui-widget-content a { color: #222222; }
|
||||
.ui-widget-header { font-weight: bold; }
|
||||
.ui-widget-header a { color: #222222; }
|
||||
|
||||
|
||||
/* Interaction states
|
||||
----------------------------------*/
|
||||
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border-left: 1px solid #d5d5d5; font-weight: normal; border-bottom: 1px solid #D5D5D5; }
|
||||
th.ui-state-default:first-child { border-left: none; }
|
||||
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; }
|
||||
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { background: #fafafa; font-weight: normal; color: #212121; }
|
||||
.ui-state-hover a, .ui-state-hover a:hover { color: #797979; text-decoration: none; }
|
||||
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { background: #fafafa; font-weight: normal; color: #5a95ba; }
|
||||
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #797979; text-decoration: none; }
|
||||
.ui-widget :active { outline: none; }
|
||||
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
|
||||
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(../images/jquery_ui/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; }
|
||||
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
|
||||
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
|
||||
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
||||
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
|
||||
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
|
||||
/* states and images */
|
||||
.ui-icon { width: 16px; height: 16px; background-image: url(../images/jquery_ui/ui-icons_222222_256x240.png); }
|
||||
.ui-widget-content .ui-icon {background-image: url(../images/jquery_ui/ui-icons_222222_256x240.png); }
|
||||
.ui-widget-header .ui-icon {background-image: url(../images/jquery_ui/ui-icons_222222_256x240.png); }
|
||||
.ui-state-default .ui-icon { background-image: url(../images/jquery_ui/ui-icons_888888_256x240.png); }
|
||||
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../images/jquery_ui/ui-icons_454545_256x240.png); }
|
||||
.ui-state-active .ui-icon {background-image: url(../images/jquery_ui/ui-icons_454545_256x240.png); }
|
||||
.ui-state-highlight .ui-icon {background-image: url(../images/jquery_ui/ui-icons_2e83ff_256x240.png); }
|
||||
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(../images/jquery_ui/ui-icons_cd0a0a_256x240.png); }
|
||||
|
||||
/* positioning */
|
||||
.ui-icon-carat-1-n { background-position: 0 0; }
|
||||
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
||||
.ui-icon-carat-1-e { background-position: -32px 0; }
|
||||
.ui-icon-carat-1-se { background-position: -48px 0; }
|
||||
.ui-icon-carat-1-s { background-position: -64px 0; }
|
||||
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
||||
.ui-icon-carat-1-w { background-position: -96px 0; }
|
||||
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
||||
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
||||
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
||||
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
||||
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
||||
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
||||
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
||||
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
||||
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
||||
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
||||
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
||||
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
||||
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
||||
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
||||
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
||||
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
||||
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
||||
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
||||
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
||||
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
||||
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
||||
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
||||
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
||||
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
||||
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
||||
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
||||
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
||||
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
||||
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
||||
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
||||
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
||||
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
||||
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
||||
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
||||
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
||||
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
||||
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
||||
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
||||
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
||||
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
||||
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
||||
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
||||
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
||||
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
||||
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
||||
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
||||
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
||||
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
||||
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
||||
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
||||
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
||||
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
||||
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
||||
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
||||
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
||||
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
||||
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
||||
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
||||
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
||||
.ui-icon-extlink { background-position: -32px -80px; }
|
||||
.ui-icon-newwin { background-position: -48px -80px; }
|
||||
.ui-icon-refresh { background-position: -64px -80px; }
|
||||
.ui-icon-shuffle { background-position: -80px -80px; }
|
||||
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
||||
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
||||
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
||||
.ui-icon-folder-open { background-position: -16px -96px; }
|
||||
.ui-icon-document { background-position: -32px -96px; }
|
||||
.ui-icon-document-b { background-position: -48px -96px; }
|
||||
.ui-icon-note { background-position: -64px -96px; }
|
||||
.ui-icon-mail-closed { background-position: -80px -96px; }
|
||||
.ui-icon-mail-open { background-position: -96px -96px; }
|
||||
.ui-icon-suitcase { background-position: -112px -96px; }
|
||||
.ui-icon-comment { background-position: -128px -96px; }
|
||||
.ui-icon-person { background-position: -144px -96px; }
|
||||
.ui-icon-print { background-position: -160px -96px; }
|
||||
.ui-icon-trash { background-position: -176px -96px; }
|
||||
.ui-icon-locked { background-position: -192px -96px; }
|
||||
.ui-icon-unlocked { background-position: -208px -96px; }
|
||||
.ui-icon-bookmark { background-position: -224px -96px; }
|
||||
.ui-icon-tag { background-position: -240px -96px; }
|
||||
.ui-icon-home { background-position: 0 -112px; }
|
||||
.ui-icon-flag { background-position: -16px -112px; }
|
||||
.ui-icon-calendar { background-position: -32px -112px; }
|
||||
.ui-icon-cart { background-position: -48px -112px; }
|
||||
.ui-icon-pencil { background-position: -64px -112px; }
|
||||
.ui-icon-clock { background-position: -80px -112px; }
|
||||
.ui-icon-disk { background-position: -96px -112px; }
|
||||
.ui-icon-calculator { background-position: -112px -112px; }
|
||||
.ui-icon-zoomin { background-position: -128px -112px; }
|
||||
.ui-icon-zoomout { background-position: -144px -112px; }
|
||||
.ui-icon-search { background-position: -160px -112px; }
|
||||
.ui-icon-wrench { background-position: -176px -112px; }
|
||||
.ui-icon-gear { background-position: -192px -112px; }
|
||||
.ui-icon-heart { background-position: -208px -112px; }
|
||||
.ui-icon-star { background-position: -224px -112px; }
|
||||
.ui-icon-link { background-position: -240px -112px; }
|
||||
.ui-icon-cancel { background-position: 0 -128px; }
|
||||
.ui-icon-plus { background-position: -16px -128px; }
|
||||
.ui-icon-plusthick { background-position: -32px -128px; }
|
||||
.ui-icon-minus { background-position: -48px -128px; }
|
||||
.ui-icon-minusthick { background-position: -64px -128px; }
|
||||
.ui-icon-close { background-position: -80px -128px; }
|
||||
.ui-icon-closethick { background-position: -96px -128px; }
|
||||
.ui-icon-key { background-position: -112px -128px; }
|
||||
.ui-icon-lightbulb { background-position: -128px -128px; }
|
||||
.ui-icon-scissors { background-position: -144px -128px; }
|
||||
.ui-icon-clipboard { background-position: -160px -128px; }
|
||||
.ui-icon-copy { background-position: -176px -128px; }
|
||||
.ui-icon-contact { background-position: -192px -128px; }
|
||||
.ui-icon-image { background-position: -208px -128px; }
|
||||
.ui-icon-video { background-position: -224px -128px; }
|
||||
.ui-icon-script { background-position: -240px -128px; }
|
||||
.ui-icon-alert { background-position: 0 -144px; }
|
||||
.ui-icon-info { background-position: -16px -144px; }
|
||||
.ui-icon-notice { background-position: -32px -144px; }
|
||||
.ui-icon-help { background-position: -48px -144px; }
|
||||
.ui-icon-check { background-position: -64px -144px; }
|
||||
.ui-icon-bullet { background-position: -80px -144px; }
|
||||
.ui-icon-radio-off { background-position: -96px -144px; }
|
||||
.ui-icon-radio-on { background-position: -112px -144px; }
|
||||
.ui-icon-pin-w { background-position: -128px -144px; }
|
||||
.ui-icon-pin-s { background-position: -144px -144px; }
|
||||
.ui-icon-play { background-position: 0 -160px; }
|
||||
.ui-icon-pause { background-position: -16px -160px; }
|
||||
.ui-icon-seek-next { background-position: -32px -160px; }
|
||||
.ui-icon-seek-prev { background-position: -48px -160px; }
|
||||
.ui-icon-seek-end { background-position: -64px -160px; }
|
||||
.ui-icon-seek-start { background-position: -80px -160px; }
|
||||
.ui-icon-seek-first { background-position: -80px -160px; }
|
||||
.ui-icon-stop { background-position: -96px -160px; }
|
||||
.ui-icon-eject { background-position: -112px -160px; }
|
||||
.ui-icon-volume-off { background-position: -128px -160px; }
|
||||
.ui-icon-volume-on { background-position: -144px -160px; }
|
||||
.ui-icon-power { background-position: 0 -176px; }
|
||||
.ui-icon-signal-diag { background-position: -16px -176px; }
|
||||
.ui-icon-signal { background-position: -32px -176px; }
|
||||
.ui-icon-battery-0 { background-position: -48px -176px; }
|
||||
.ui-icon-battery-1 { background-position: -64px -176px; }
|
||||
.ui-icon-battery-2 { background-position: -80px -176px; }
|
||||
.ui-icon-battery-3 { background-position: -96px -176px; }
|
||||
.ui-icon-circle-plus { background-position: 0 -192px; }
|
||||
.ui-icon-circle-minus { background-position: -16px -192px; }
|
||||
.ui-icon-circle-close { background-position: -32px -192px; }
|
||||
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
||||
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
||||
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
||||
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
||||
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
||||
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
||||
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
||||
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
||||
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
||||
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
||||
.ui-icon-circle-check { background-position: -208px -192px; }
|
||||
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
||||
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
||||
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
||||
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
||||
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
||||
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
||||
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
||||
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
||||
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
||||
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
||||
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
||||
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
||||
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
.ui-corner-tl { -moz-border-radius-topleft: 2px; -webkit-border-top-left-radius: 2px; border-top-left-radius: 2px; }
|
||||
.ui-corner-tr { -moz-border-radius-topright: 2px; -webkit-border-top-right-radius: 2px; border-top-right-radius: 2px; }
|
||||
.ui-corner-bl { -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; }
|
||||
.ui-corner-br { -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; }
|
||||
.ui-corner-top { -moz-border-radius-topleft: 2px; -webkit-border-top-left-radius: 2px; border-top-left-radius: 2px; -moz-border-radius-topright: 2px; -webkit-border-top-right-radius: 2px; border-top-right-radius: 2px; }
|
||||
.ui-corner-bottom { -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; }
|
||||
.ui-corner-right { -moz-border-radius-topright: 2px; -webkit-border-top-right-radius: 2px; border-top-right-radius: 2px; -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; }
|
||||
.ui-corner-left { -moz-border-radius-topleft: 2px; -webkit-border-top-left-radius: 2px; border-top-left-radius: 2px; -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; }
|
||||
.ui-corner-all { -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; }
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay { background: #aaaaaa url(../images/elements/ui/pageOverlay.png); opacity: .60;filter:Alpha(Opacity=60); }
|
||||
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(../images/jquery_ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }
|
||||
|
||||
|
||||
/* ===== UI resizable ===== */
|
||||
|
||||
.ui-resizable { position: relative;}
|
||||
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
|
||||
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
|
||||
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
|
||||
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
|
||||
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
|
||||
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
|
||||
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
|
||||
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
|
||||
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
|
||||
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
|
||||
|
||||
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
|
||||
|
||||
.ui-accordion { width: 100%; }
|
||||
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
|
||||
.ui-accordion .ui-accordion-li-fix { display: inline; }
|
||||
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
|
||||
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
|
||||
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
|
||||
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
|
||||
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
|
||||
.ui-accordion .ui-accordion-content-active { display: block; }
|
||||
|
||||
|
||||
/* ===== UI autocomplete ===== */
|
||||
|
||||
.ui-autocomplete { position: absolute; display: none; padding: 0; z-index: 100!important; border: 1px solid #d5d5d5; border-top: none; max-height: 185px; overflow: auto; }
|
||||
.ui-autocomplete .ui-state-hover { background: none; padding: 6px 10px 7px 32px; }
|
||||
|
||||
/* workarounds */
|
||||
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
|
||||
|
||||
.ui-menu { display: block; float: left; }
|
||||
.ui-menu .ui-menu { }
|
||||
.ui-menu .ui-menu-item { margin:0; padding: 0; zoom: 1; float: left; clear: left; width: 100%; border-bottom: 1px solid #eaeaea; border-top: 1px solid #fff; background: #fafafa; }
|
||||
.ui-menu .ui-menu-item a { text-decoration:none; display:block; padding: 6px 10px 7px 10px; color: #444; line-height:1.5; zoom:1; font-size: 11px; cursor: pointer; }
|
||||
.ui-menu .ui-menu-item a.ui-state-hover { background-color: #f5f5f5; }
|
||||
.ui-menu .ui-menu-item a.ui-state-hover, .ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; }
|
||||
|
||||
|
||||
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
|
||||
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
|
||||
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
|
||||
.ui-button-icons-only { width: 3.4em; }
|
||||
button.ui-button-icons-only { width: 3.7em; }
|
||||
|
||||
/*button text element */
|
||||
.ui-button .ui-button-text { display: block; }
|
||||
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
|
||||
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
|
||||
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
|
||||
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
|
||||
/* no icon support for input elements, provide padding by default */
|
||||
input.ui-button { padding: .4em 1em; }
|
||||
|
||||
/*button icon element(s) */
|
||||
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
|
||||
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
|
||||
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
|
||||
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
||||
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
||||
|
||||
/*button sets*/
|
||||
.ui-buttonset { margin-right: 5px; }
|
||||
.ui-buttonset .ui-button { margin: 0 3px; background: #FAFAFA; border: 1px solid #D5D5D5; line-height: 14px; font-size: 11px; }
|
||||
|
||||
/* workarounds */
|
||||
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
|
||||
|
||||
|
||||
/* ===== UI Dialog ===== */
|
||||
|
||||
.ui-dialog { position: absolute; padding: 3px; width: auto; background: #808080; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
|
||||
|
||||
.ui-dialog input[type=text], .ui-dialog input[type=password], .ui-dialog textarea { font-size: 11px; padding: 6px 5px; background: white; border: 1px solid #DDD; width: 100%; font-family: Arial, Helvetica, sans-serif; box-shadow: 0 0 0 2px #f4f4f4; color: #656565; width: 100%; margin: 10px auto; display: block; box-sizing: border-box; }
|
||||
.ui-dialog form { }
|
||||
.ui-dialog form label { float: left; cursor: pointer; margin-bottom: 3px; }
|
||||
.dialogSelect label { margin: 4px 15px 0 0; }
|
||||
.customDialog { padding: 0!important; }
|
||||
.ui-dialog .icon { padding: 1px 6px 0 0; float: left; }
|
||||
.ui-dialog .titleIcon { position: absolute; top: -10px; }
|
||||
.ui-dialog p { padding: 0!important; }
|
||||
.ui-dialog .ui-dialog-titlebar { position: relative; border-bottom: 1px solid #CDCDCD; box-shadow: 0 1px 0 #fff; text-shadow: 0 1px white; background: #f8f8f8; background: -moz-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#e8e8e8)); background: -webkit-linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%); background: -o-linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%); background: -ms-linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%); background: linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#e8e8e8',GradientType=0 ); }
|
||||
.ui-dialog .ui-dialog-title { height: 40px; padding: 0 14px; line-height: 40px; }
|
||||
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: 6px; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
|
||||
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; opacity: 0.6; }
|
||||
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 1px; background: #fafafa; }
|
||||
.ui-dialog .ui-dialog-content { position: relative; overflow: auto; zoom: 1; padding: 10px 12px; background: #f5f5f5; clear: both; }
|
||||
.ui-dialog .ui-dialog-buttonpane { padding: 0 12px; font-size: .9em; border-top: 1px solid #cdcdcd; padding: 10px 0; text-shadow: 0 1px white; background: #f8f8f8; background: -moz-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#e8e8e8)); background: -webkit-linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%); background: -o-linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%); background: -ms-linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%); background: linear-gradient(top, #f8f8f8 0%,#e8e8e8 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#e8e8e8',GradientType=0 ); }
|
||||
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { text-align: right; margin: 0 4px; }
|
||||
.ui-dialog .ui-dialog-buttonpane button { font-size: 11px; color: #fff; font-weight: bold; text-shadow: 0 -1px #6f6f6f; display: inline-block; line-height: 14px; border-radius: 2px; -webkit-border-radius: 2px; -moz-border-radius: 2px; padding: 7px 16px; margin: 0 5px; border: 1px solid #3e76af; box-shadow: 0 1px 2px 0 #66b2d2 inset; background: #5ba5cb; background: -moz-linear-gradient(top, #5ba5cb 0%, #3a70ab 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5ba5cb), color-stop(100%,#3a70ab)); background: -webkit-linear-gradient(top, #5ba5cb 0%,#3a70ab 100%); background: -o-linear-gradient(top, #5ba5cb 0%,#3a70ab 100%); background: -ms-linear-gradient(top, #5ba5cb 0%,#3a70ab 100%); background: linear-gradient(top, #5ba5cb 0%,#3a70ab 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5ba5cb', endColorstr='#3a70ab',GradientType=0 ); }
|
||||
.ui-dialog .ui-dialog-buttonpane button:hover { opacity: 0.95; -webkit-transition: opacity 0.2s ease-in-out; }
|
||||
.ui-dialog .ui-dialog-buttonpane button:active { background: #4786b8; box-shadow: 0 0 2px #707070 inset, 0 1px 0 #fff; }
|
||||
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 5px; bottom: 5px; opacity: 0.3; }
|
||||
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
||||
|
||||
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #AAA url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30; filter: Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }
|
||||
|
||||
|
||||
/* ===== UI Slider ===== */
|
||||
|
||||
.ui-slider { position: relative; text-align: left; }
|
||||
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 16px; height: 16px; cursor: default; background: url(../images/elements/ui/handle.png) no-repeat; border: none; cursor: pointer; }
|
||||
.ui-slider .ui-slider-handle:hover { background-position: 0 -16px; }
|
||||
.ui-slider .ui-slider-handle:active { background-position: 0 -32px; }
|
||||
|
||||
.ui-slider .ui-slider-range { position: absolute; z-index: 1; height: 6px; font-size: .7em; display: block; border: 1px solid #5ba8e1; box-shadow: 0 1px 0 #aad6f6 inset; -moz-border-radius: 6px; -webkit-border-radius: 6px; -khtml-border-radius: 6px; border-radius: 6px; background: #9bcff5; background: -moz-linear-gradient(top, #9bcff5 0%, #84c4f3 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9bcff5), color-stop(100%,#84c4f3)); background: -webkit-linear-gradient(top, #9bcff5 0%,#84c4f3 100%); background: -o-linear-gradient(top, #9bcff5 0%,#84c4f3 100%); background: -ms-linear-gradient(top, #9bcff5 0%,#84c4f3 100%); background: linear-gradient(top, #9bcff5 0%,#84c4f3 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9bcff5', endColorstr='#84c4f3',GradientType=0 ); }
|
||||
.ui-slider-horizontal { height: 4px; background: #d7d7d7; border: 1px solid #bababa; box-shadow: 0 1px 0 #fff, 0 1px 0 #cfcfcf inset; clear: both; margin: 8px 0; -moz-border-radius: 6px; -webkit-border-radius: 6px; -khtml-border-radius: 6px; border-radius: 6px; }
|
||||
.ui-slider-horizontal .ui-slider-handle { top: -6px; margin-left: -.6em; }
|
||||
.ui-slider-horizontal .ui-slider-range { top: -1px; height: 100%; }
|
||||
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
|
||||
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
|
||||
.ui-slider-vertical { height: 100px; width: 4px; background: #d7d7d7; box-shadow: 0 1px 0 #fff, 0 1px 0 #cfcfcf inset; }
|
||||
.ui-slider-vertical .ui-slider-handle { left: -6px; margin-left: 0; margin-bottom: -.6em; }
|
||||
.ui-slider-vertical .ui-slider-range { left: 0; width: 2px; background: #9bcff5; background: -moz-linear-gradient(top, #9bcff5 0%, #84c4f3 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9bcff5), color-stop(100%,#84c4f3)); background: -webkit-linear-gradient(top, #9bcff5 0%,#84c4f3 100%); background: -o-linear-gradient(top, #9bcff5 0%,#84c4f3 100%); background: -ms-linear-gradient(top, #9bcff5 0%,#84c4f3 100%); background: linear-gradient(top, #9bcff5 0%,#84c4f3 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9bcff5', endColorstr='#84c4f3',GradientType=0 ); }
|
||||
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
|
||||
.ui-slider-vertical .ui-slider-range-max { top: 0; }
|
||||
#eq span { height: 120px; float: left; margin-right: 30px; display: block; }
|
||||
|
||||
|
||||
/* ===== UI Tabs ===== */
|
||||
|
||||
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
||||
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
|
||||
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
|
||||
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
|
||||
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
|
||||
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
|
||||
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
||||
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
|
||||
.ui-tabs .ui-tabs-hide { display: none !important; }
|
||||
|
||||
|
||||
/* ===== UI Datepicker ===== */
|
||||
|
||||
.datepicker { width: 78px!important; }
|
||||
.datesRange li { float:left; }
|
||||
.datesRange li.separator { margin: 0 10px; color: #ddd; }
|
||||
.datesRange li input[type=text] { width: 78px!important; }
|
||||
.ui-datepicker-append { margin-left: 14px; font-size: 11px; line-height: 26px; }
|
||||
.ui-datepicker { width: 195px; /*padding: .2em .2em 0;*/ display: none; border: 1px solid #CDCDCD; }
|
||||
.ui-datepicker-inline { width: 100%; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; margin-top: 35px; }
|
||||
#sidebar .ui-datepicker-inline, .widget .ui-datepicker-inline { margin-top: 0; }
|
||||
.formRow .ui-datepicker-inline { width: 195px; }
|
||||
.ui-datepicker .ui-datepicker-header { position:relative; padding: 8px 0 7px 0; border:0px; font-weight: bold; font-size: 11px; width: 100%; color: #636363; text-shadow: 0 1px white; border-bottom: 1px solid #CDCDCD; border-radius: 0!important; box-shadow: 0 1px 0 #fff; -webkit-box-shadow: 0 1px 0 #fff; -moz-box-shadow: 0 1px 0 #fff; background: #F8F8F8; background: -moz-linear-gradient(top, #F8F8F8 0%, #ececec 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F8F8F8), color-stop(100%,#ececec)); background: -webkit-linear-gradient(top, #F8F8F8 0%,#ececec 100%); background: -o-linear-gradient(top, #F8F8F8 0%,#ececec 100%); background: -ms-linear-gradient(top, #F8F8F8 0%,#ececec 100%); background: linear-gradient(top, #F8F8F8 0%,#ececec 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#ececec',GradientType=0 ); }
|
||||
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 9px; width: 1.8em; height: 1.8em; cursor: pointer; }
|
||||
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { background: none; }
|
||||
.ui-datepicker .ui-datepicker-prev { left:2px; }
|
||||
.ui-datepicker .ui-datepicker-next { right:7px; }
|
||||
.ui-datepicker .ui-datepicker-prev-hover { }
|
||||
.ui-datepicker .ui-datepicker-next-hover { }
|
||||
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; width: 6px; cursor: pointer; height: 9px; position: absolute; left: 50%; top: 4px; background: url(../images/elements/ui/dateArrows.png) no-repeat 0; }
|
||||
.ui-datepicker .ui-datepicker-prev span { background-position: 0 0; }
|
||||
.ui-datepicker .ui-datepicker-next span { background-position: -8px 0; }
|
||||
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
|
||||
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
|
||||
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
|
||||
.ui-datepicker select.ui-datepicker-month,
|
||||
.ui-datepicker select.ui-datepicker-year { width: 49%;}
|
||||
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0; }
|
||||
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
|
||||
.ui-datepicker td { border: 0; padding: 1px; line-height: 14px; }
|
||||
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
|
||||
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
|
||||
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
|
||||
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
|
||||
|
||||
|
||||
|
||||
.gwt-DatePicker {
|
||||
border: 1px solid #CDCDCD;
|
||||
background: #FAFAFA;
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 2px 2px -2px #CCC;
|
||||
}
|
||||
|
||||
.gwt-DatePicker .datePickerPreviousButton {
|
||||
background-position: 0 0;
|
||||
background: url(../images/elements/ui/dateArrows.png) no-repeat 0;
|
||||
width: 6px;
|
||||
height: 9px;
|
||||
margin: 7px 10px 5px 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.gwt-DatePicker .datePickerNextButton {
|
||||
background-position: -8px 0;
|
||||
background: url(../images/elements/ui/dateArrows.png) no-repeat -8px 0;
|
||||
width: 6px;
|
||||
height: 9px;
|
||||
margin: 7px 10px 5px 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.gwt-DatePicker .datePickerPreviousButton .html-face,
|
||||
.gwt-DatePicker .datePickerNextButton .html-face {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.gwt-DatePicker .datePickerMonthSelector {
|
||||
border: 0px;
|
||||
width: 100%;
|
||||
text-shadow: 0 1px white;
|
||||
border-bottom: 1px solid #CDCDCD;
|
||||
border-radius: 0!important;
|
||||
box-shadow: 0 1px 0 white;
|
||||
-webkit-box-shadow: 0 1px 0 white;
|
||||
-moz-box-shadow: 0 1px 0 #fff;
|
||||
background: #F8F8F8;
|
||||
background: -moz-linear-gradient(top, #F8F8F8 0%, #ECECEC 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F8F8F8), color-stop(100%,#ECECEC));
|
||||
background: -webkit-linear-gradient(top, #F8F8F8 0%,#ECECEC 100%);
|
||||
background: -o-linear-gradient(top, #F8F8F8 0%,#ECECEC 100%);
|
||||
background: -ms-linear-gradient(top, #F8F8F8 0%,#ECECEC 100%);
|
||||
background: linear-gradient(top, #F8F8F8 0%,#ECECEC 100%);
|
||||
}
|
||||
|
||||
.gwt-DatePicker .datePickerMonth {
|
||||
padding: 8px 0 7px 0;
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
color: #636363;
|
||||
line-height: 1.8em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.gwt-DatePicker .datePickerDays {
|
||||
width: 100%;
|
||||
font-size: .9em;
|
||||
border-collapse: collapse;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.gwt-DatePicker .datePickerWeekendLabel,
|
||||
.gwt-DatePicker .datePickerWeekdayLabel {
|
||||
font-weight: bold;
|
||||
color: gray;
|
||||
padding: .7em .3em;
|
||||
text-align: center;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.gwt-DatePicker .datePickerDay {
|
||||
border: 0px;
|
||||
background: none;
|
||||
margin-bottom: 0px;
|
||||
padding: 6px;
|
||||
color: #505050;
|
||||
text-align: center;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.gwt-DatePicker .datePickerDayIsFiller {
|
||||
opacity: .35;
|
||||
}
|
||||
|
||||
.gwt-DatePicker .datePickerDayIsValue {
|
||||
background: #67919D;
|
||||
color: white;
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.gwt-DatePicker .datePickerDayIsHighlighted {
|
||||
background: #476981;
|
||||
color: white;
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
/* with multiple calendars */
|
||||
.ui-datepicker.ui-datepicker-multi { width:auto; }
|
||||
.ui-datepicker-multi .ui-datepicker-group { float:left; border-left: 1px solid #cdcdcd; }
|
||||
.ui-datepicker-multi .ui-datepicker-group:first-child { border-left: none; }
|
||||
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
|
||||
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
|
||||
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
|
||||
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
|
||||
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
|
||||
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
|
||||
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
|
||||
.ui-datepicker-row-break { clear:both; width:100%; }
|
||||
|
||||
/* RTL support */
|
||||
.ui-datepicker-rtl { direction: rtl; }
|
||||
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
|
||||
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
|
||||
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
||||
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
||||
|
||||
.ui-datepicker th { font-weight: bold; color: gray; }
|
||||
.ui-datepicker-today a:hover{ background-color: #808080; color: #ffffff; }
|
||||
.ui-datepicker-today a{ background-color: #BFBFBF; cursor: pointer; padding: 0 1px; margin-bottom:0px; }
|
||||
.ui-datepicker td a{ margin-bottom:0px; border:0px; }
|
||||
.ui-datepicker td:hover{ color:white; }
|
||||
.ui-datepicker td .ui-state-default { border:0px; background:none; margin-bottom:0px; padding:6px; color: #505050; text-align: center; filter:none; }
|
||||
.ui-datepicker td .ui-state-active{ background:#67919d; margin-bottom:0px; font-size:normal; text-shadow: 0px; color:white; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; }
|
||||
.ui-datepicker td .ui-state-default:hover{ background:#476981; color:white; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; }
|
||||
|
||||
|
||||
/* ===== UI Progress bar ===== */
|
||||
|
||||
.ui-progressbar { height: 16px; text-align: left; margin-top: 5px; background: #d7d7d7; border: 1px solid #bababa; box-shadow: 0 1px 0 #fff, 0 1px 0 #cfcfcf inset; clear: both; }
|
||||
.ui-progressbar .ui-progressbar-value {margin: 0px; height:100%; overflow: hidden; display: block; background: url(../images/elements/ui/progressOverlay.png) repeat-x; border-right: 1px solid #5b9acb; }
|
||||
.pbar .ui-progressbar-value {display:block !important}
|
||||
.pbar, .precent, elapsed { display: block; }
|
||||
.percent, .elapsed { position: relative; margin-top: 5px; font-size: 11px; }
|
||||
.pbar { overflow: hidden; }
|
||||
.percent { float: right; }
|
||||
.elapsed { float: left;}
|
BIN
war/resources/images/backgrounds/alt.png
Normal file
After Width: | Height: | Size: 989 B |
BIN
war/resources/images/backgrounds/body.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
war/resources/images/backgrounds/breadcrumb.png
Normal file
After Width: | Height: | Size: 987 B |
BIN
war/resources/images/backgrounds/breadcrumbs.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
war/resources/images/backgrounds/contentTop.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
war/resources/images/backgrounds/patterns/pattern1.png
Normal file
After Width: | Height: | Size: 1019 B |
BIN
war/resources/images/backgrounds/patterns/pattern2.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
war/resources/images/backgrounds/patterns/pattern3.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
war/resources/images/backgrounds/patterns/pattern4.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
war/resources/images/backgrounds/patterns/pattern5.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
war/resources/images/backgrounds/patterns/pattern6.png
Normal file
After Width: | Height: | Size: 985 B |
BIN
war/resources/images/backgrounds/patterns/pattern7.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
war/resources/images/backgrounds/patterns/pattern8.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
war/resources/images/backgrounds/patterns/pattern9.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
war/resources/images/backgrounds/side.jpg
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
war/resources/images/backgrounds/sidebar.jpg
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
war/resources/images/backgrounds/subnav.jpg
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
war/resources/images/backgrounds/top.jpg
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
war/resources/images/big.png
Normal file
After Width: | Height: | Size: 112 KiB |
BIN
war/resources/images/demo.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
war/resources/images/div.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
war/resources/images/dropFiles.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
war/resources/images/elements/checkboxes/handle.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
war/resources/images/elements/checkboxes/handle2.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.2 KiB |
BIN
war/resources/images/elements/checkboxes/no.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
war/resources/images/elements/checkboxes/off.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
war/resources/images/elements/checkboxes/off2.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
war/resources/images/elements/checkboxes/on.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
war/resources/images/elements/checkboxes/on2.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
war/resources/images/elements/checkboxes/slider.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
war/resources/images/elements/checkboxes/slider_center.png
Normal file
After Width: | Height: | Size: 260 B |
BIN
war/resources/images/elements/checkboxes/slider_left.png
Normal file
After Width: | Height: | Size: 324 B |
BIN
war/resources/images/elements/checkboxes/slider_right.png
Normal file
After Width: | Height: | Size: 321 B |
BIN
war/resources/images/elements/checkboxes/yes.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
war/resources/images/elements/colorPicker/Thumbs.db
Normal file
BIN
war/resources/images/elements/colorPicker/blank.gif
Normal file
After Width: | Height: | Size: 49 B |
After Width: | Height: | Size: 1.9 KiB |
BIN
war/resources/images/elements/colorPicker/colorpicker_hex.png
Normal file
After Width: | Height: | Size: 532 B |
BIN
war/resources/images/elements/colorPicker/colorpicker_hsb_b.png
Normal file
After Width: | Height: | Size: 970 B |