-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Search Resources, some changes into the component_portal, component_autocomplete, component_geolocation. New edit mode into the component_portal, new svg icons and more.
- Loading branch information
renderpci
committed
Oct 6, 2016
1 parent
3495a5d
commit 62240b8
Showing
217 changed files
with
11,516 additions
and
5,027 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
Only use to set general thesaurus styles, not dinamic rows | ||
Specific CSS for ts_object must be writed in ts_object.less | ||
*/ | ||
@line_height: 34px; | ||
|
||
/* WRAPPER : CSS_WRAP_AREA_THESAURUS | ||
------------------------------------------------ */ | ||
.css_wrap_area_thesaurus { | ||
|
||
} | ||
.css_wrap_area_thesaurus > ul { | ||
padding: 25px; | ||
//background-color: #F4DD79 | ||
} | ||
.css_wrap_area_thesaurus > ul > li { | ||
} | ||
/* TIPOLOGY_NAME like 'Toponomy' | ||
------------------------------------------------ */ | ||
.css_wrap_area_thesaurus .tipology_name { | ||
background-color: #E6E6E6; | ||
padding: 7px;text-transform: uppercase; | ||
} | ||
/* HIERARCHY_NAME like 'España' | ||
------------------------------------------------ */ | ||
.css_wrap_area_thesaurus .hierarchy_name { | ||
padding: 7px; | ||
//background-color: #727272; | ||
padding-left: 10px; | ||
font-size: 1.15em; | ||
color: #333333; | ||
border-bottom: 1px solid #ebebeb; | ||
} | ||
.css_wrap_area_thesaurus .hierarchy_name .ts_object_add { | ||
display: inline-block; | ||
position: relative; | ||
top: 5px; | ||
left: 4px; | ||
} | ||
|
||
|
||
/* HIERARCHY_ROOT_NODE Container (childrens container) | ||
------------------------------------------------ */ | ||
.css_wrap_area_thesaurus .hierarchy_root_node { | ||
//background-color: #EDEDED; | ||
padding: 7px; | ||
min-height: @line_height; | ||
margin-left: 10px; | ||
} | ||
.hierarchy_root_node > .childrens_container { | ||
margin-left: 0 !important; | ||
} | ||
|
||
|
||
/* SEARCH FORM | ||
------------------------------------------------ */ | ||
.search_form_container { | ||
//background-color: #A6E1A2; | ||
padding: 10px; | ||
padding-top: 5px; | ||
width: 100%; | ||
} |
Oops, something went wrong.