Initial commit
This commit is contained in:
70
app/css/demo-framework.css
Normal file
70
app/css/demo-framework.css
Normal file
@@ -0,0 +1,70 @@
|
||||
body {
|
||||
padding-top: 70px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.box {
|
||||
margin-bottom: 20px;
|
||||
background-color: #fff;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
|
||||
box-shadow: 0 1px 2px rgba(0,0,0,.05);
|
||||
}
|
||||
|
||||
.box > h3 {
|
||||
color: #333;
|
||||
border-color: #ddd;
|
||||
border-bottom: 1px solid transparent;
|
||||
border-top-right-radius: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
background-repeat: repeat-x;
|
||||
display: block;
|
||||
font-size: 16px;
|
||||
padding: 10px 15px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.box-padding {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.box-padding > h3 {
|
||||
margin: -15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.box-grey {
|
||||
border-color: #ddd;
|
||||
}
|
||||
|
||||
.box-grey > h3 {
|
||||
background-color: #f5f5f5;
|
||||
background-image: -webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
|
||||
background-image: linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);
|
||||
}
|
||||
|
||||
.box-blue {
|
||||
border-color: #bce8f1;
|
||||
}
|
||||
|
||||
.box-blue > h3 {
|
||||
color: #31708f;
|
||||
background-color: #d9edf7;
|
||||
border-color: #bce8f1;
|
||||
background-image: -webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);
|
||||
background-image: linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);
|
||||
}
|
||||
|
||||
.box-yellow {
|
||||
border-color: #faebcc;
|
||||
}
|
||||
|
||||
.box-yellow > h3 {
|
||||
//color: #8a6d3b;
|
||||
//background-color: #fcf8e3;
|
||||
//border-color: #faebcc;
|
||||
//background-image: -webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);
|
||||
//background-image: linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);
|
||||
}
|
149
app/css/nested.css
Normal file
149
app/css/nested.css
Normal file
@@ -0,0 +1,149 @@
|
||||
/***************************** Required styles *****************************/
|
||||
|
||||
/**
|
||||
* For the correct positioning of the placeholder element, the dnd-list and
|
||||
* it's children must have position: relative
|
||||
*/
|
||||
.nestedDemo ul[dnd-list],
|
||||
.nestedDemo ul[dnd-list] > li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/***************************** Dropzone Styling *****************************/
|
||||
|
||||
/**
|
||||
* The dnd-list should always have a min-height,
|
||||
* otherwise you can't drop to it once it's empty
|
||||
*/
|
||||
.nestedDemo .dropzone ul[dnd-list] {
|
||||
min-height: 42px;
|
||||
margin: 0px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
/**
|
||||
* The dnd-lists's child elements currently MUST have
|
||||
* position: relative. Otherwise we can not determine
|
||||
* whether the mouse pointer is in the upper or lower
|
||||
* half of the element we are dragging over. In other
|
||||
* browsers we can use event.offsetY for this.
|
||||
*/
|
||||
.nestedDemo .dropzone li {
|
||||
background-color: #fff;
|
||||
border: 1px solid #ddd;
|
||||
display: block;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Reduce opacity of elements during the drag operation. This allows the user
|
||||
* to see where he is dropping his element, even if the element is huge. The
|
||||
* .dndDragging class is automatically set during the drag operation.
|
||||
*/
|
||||
.nestedDemo .dropzone .dndDragging {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
/**
|
||||
* The dndDraggingSource class will be applied to the source element of a drag
|
||||
* operation. It makes sense to hide it to give the user the feeling that he's
|
||||
* actually moving it. Note that the source element has also .dndDragging class.
|
||||
*/
|
||||
.nestedDemo .dropzone .dndDraggingSource {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* An element with .dndPlaceholder class will be added as child of the dnd-list
|
||||
* while the user is dragging over it.
|
||||
*/
|
||||
.nestedDemo .dropzone .dndPlaceholder {
|
||||
background-color: #ddd;
|
||||
min-height: 42px;
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/***************************** Element Selection *****************************/
|
||||
|
||||
.nestedDemo .dropzone .selected .item {
|
||||
color: #3c763d;
|
||||
background-color: #dff0d8;
|
||||
}
|
||||
|
||||
.nestedDemo .dropzone .selected .box {
|
||||
border-color: #d6e9c6;
|
||||
}
|
||||
|
||||
.nestedDemo .dropzone .selected .box > h3 {
|
||||
color: #3c763d;
|
||||
background-color: #dff0d8;
|
||||
background-image: linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);
|
||||
border-color: #d6e9c6;
|
||||
}
|
||||
|
||||
/***************************** Element type specific styles *****************************/
|
||||
|
||||
.nestedDemo .dropzone .item {
|
||||
padding: 10px 15px;
|
||||
}
|
||||
|
||||
.nestedDemo .dropzone .container-element {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.nestedDemo .dropzone .container-element .column {
|
||||
float: left;
|
||||
width: 16.666%;
|
||||
}
|
||||
|
||||
.nestedDemo .dropzone .container-element .columnQuestions {
|
||||
float: left;
|
||||
width: 100%;
|
||||
}
|
||||
/***************************** Toolbox *****************************/
|
||||
|
||||
.nestedDemo .toolbox ul {
|
||||
list-style: none;
|
||||
padding-left: 0px;
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.nestedDemo .toolbox button {
|
||||
margin: 5px;
|
||||
//width: 123px;
|
||||
opacity: 1.0;
|
||||
}
|
||||
|
||||
.nestedDemo .toolbox .dndDragging {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.nestedDemo .toolbox .dndDraggingSource {
|
||||
opacity: 1.0;
|
||||
}
|
||||
|
||||
/***************************** Trashcan *****************************/
|
||||
|
||||
.nestedDemo .trashcan ul {
|
||||
list-style: none;
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
.nestedDemo .trashcan img {
|
||||
width: 100%;
|
||||
-webkit-filter: grayscale(100%);
|
||||
-moz-filter: grayscale(100%);
|
||||
filter: grayscale(100%);
|
||||
}
|
||||
|
||||
.nestedDemo .trashcan .dndDragover img {
|
||||
width: 100%;
|
||||
-webkit-filter: none;
|
||||
-moz-filter: none;
|
||||
filter: none;
|
||||
}
|
||||
|
||||
.nestedDemo .trashcan .dndPlaceholder {
|
||||
display: none;
|
||||
}
|
59
app/css/search-box-example.css
Normal file
59
app/css/search-box-example.css
Normal file
@@ -0,0 +1,59 @@
|
||||
html, body {
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
padding: 0px
|
||||
}
|
||||
|
||||
.pac-controls {
|
||||
margin-top: 16px;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 2px 0 0 2px;
|
||||
box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
height: 32px !important;
|
||||
outline: none;
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
#pac-input {
|
||||
background-color: #fff;
|
||||
padding: 0 11px 0 13px;
|
||||
width: 400px;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
font-size: 15px;
|
||||
font-weight: 300;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
#pac-input:focus {
|
||||
border-color: #4d90fe;
|
||||
margin-left: -1px;
|
||||
padding-left: 14px; /* Regular padding-left + 1. */
|
||||
width: 401px;
|
||||
}
|
||||
|
||||
.pac-container {
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
}
|
||||
|
||||
#type-selector {
|
||||
color: #fff;
|
||||
background-color: #4d90fe;
|
||||
padding: 5px 11px 0px 11px;
|
||||
}
|
||||
|
||||
#type-selector label {
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
font-size: 13px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.angular-google-map-container {
|
||||
width: 100%;
|
||||
height: 600px;
|
||||
}
|
||||
|
||||
/* fix for Twitter Bootstrap handling of responsive images */
|
||||
.angular-google-map img {
|
||||
max-width: inherit;
|
||||
}
|
130
app/css/style.css
Normal file
130
app/css/style.css
Normal file
@@ -0,0 +1,130 @@
|
||||
/*
|
||||
* Estilos para el modulo de notas marginales.
|
||||
*/
|
||||
|
||||
/* El contenido se desplaza hacia abajo porque usamos una barra de navegación fija de 50px */
|
||||
body {
|
||||
padding-top: 85px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Barra de navegación superior
|
||||
* Se elimina el borde por defecto de 1px.
|
||||
*/
|
||||
.navbar-fixed-top {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.navbar-fixed-top-special {
|
||||
position: fixed;
|
||||
z-index: 30;
|
||||
}
|
||||
|
||||
/*
|
||||
* Sidebar
|
||||
*/
|
||||
|
||||
/* Hide for mobile, show later */
|
||||
.sidebar {
|
||||
display: none;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.sidebar {
|
||||
position: fixed;
|
||||
top: 85px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1000;
|
||||
display: block;
|
||||
padding: 20px;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto; /* Si el contenido es mayor al visor, se hace scroll */
|
||||
background-color: #f5f5f5;
|
||||
border-right: 1px solid #ccc;
|
||||
}
|
||||
}
|
||||
|
||||
/* Navegación del sidebar */
|
||||
.nav-sidebar {
|
||||
margin-right: -21px; /* 20px padding + 1px border */
|
||||
margin-bottom: 20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
.nav-sidebar > li > a {
|
||||
padding-right: 20px;
|
||||
padding-left: 20px;
|
||||
color: #000;
|
||||
}
|
||||
.nav-sidebar > .active > a,
|
||||
.nav-sidebar > .active > a:hover,
|
||||
.nav-sidebar > .active > a:focus {
|
||||
font-style: italic;
|
||||
color: #FFF;
|
||||
background-color: #808080;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Contenido principal.
|
||||
*/
|
||||
|
||||
.main { padding: 20px; }
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.main {
|
||||
padding-right: 40px;
|
||||
padding-left: 40px;
|
||||
}
|
||||
}
|
||||
.main .page-header { margin-top: 0; }
|
||||
|
||||
/* Barra superior */
|
||||
.navbar { min-height: 85px; }
|
||||
.navbar-inverse { background-color: #CCC; }
|
||||
.navbar-inverse .navbar-brand { color: #808080; }
|
||||
.navbar-inverse .navbar-nav > li > a { color: #808080; }
|
||||
|
||||
/* Estilos para errores de validación */
|
||||
small.error { color: red; }
|
||||
input.ng-dirty.ng-valid { border:1px solid Green; }
|
||||
input.ng-dirty.ng-invalid { border:1px solid Red; }
|
||||
|
||||
|
||||
.research tr.accordion td { background:transparent url(row_bkg.png) repeat-x scroll center left; cursor:pointer; }
|
||||
.research .accordion img.arrow { background:transparent url(../img/arrows.png) no-repeat scroll 0px -16px; width:16px; height:16px; display:block;}
|
||||
.research .accordion img.up { background:transparent url(../img/arrows.png) no-repeat scroll 0px -16px; width:16px; height:16px; display:block; background-position:0px 0px;}
|
||||
|
||||
input[type=number]::-webkit-inner-spin-button,
|
||||
input[type=number]::-webkit-outer-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
svg .state {
|
||||
stroke-width: 2;
|
||||
stroke: #fff;
|
||||
|
||||
-webkit-transition: stroke 0.5s, stroke-width 0.5s;
|
||||
-o-transition: stroke 0.5s, stroke-width 0.5s;
|
||||
transition: stroke 0.5s, stroke-width 0.5s;
|
||||
}
|
||||
svg .state:hover , .state.active {
|
||||
cursor: pointer;
|
||||
stroke-width: 4;
|
||||
stroke: #000;
|
||||
}
|
||||
|
||||
.regionlist {
|
||||
-webkit-column-count: 5; /* Chrome, Safari, Opera */
|
||||
-moz-column-count: 5; /* Firefox */
|
||||
column-count: 5;
|
||||
}
|
||||
.regionlist > div {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
border-bottom: 1px solid grey;
|
||||
}
|
||||
.regionlist > div > div {
|
||||
display: inline-block;
|
||||
width: 48%;
|
||||
}
|
Reference in New Issue
Block a user