-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1 Add stock UI customisations for ALA
- Loading branch information
1 parent
9f6a3b4
commit 8e2e94e
Showing
13 changed files
with
1,415 additions
and
173 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
.logo-brand { | ||
text-align: center; | ||
margin-top: 1em; | ||
} | ||
|
||
.brand-layout-control { | ||
display: inline-block; | ||
font-size: 64px; | ||
} | ||
|
||
.heading-medium-large { | ||
border-bottom: inherit; | ||
font-size: 26px; | ||
font-weight: 900; | ||
line-height: 1.25; | ||
margin-bottom: .8em; | ||
margin-top: 0.3em; | ||
text-transform: none; | ||
} | ||
|
||
.btn-social { | ||
padding-left: 0; | ||
text-align: center; | ||
font-size:16px; | ||
line-height: 2; | ||
} | ||
|
||
.btn-social>:first-child { | ||
line-height: 44px; | ||
border-right: 0; | ||
} | ||
|
||
.form-group-overlay { | ||
position: relative; | ||
} | ||
|
||
.form-group-overlay .forgot { | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
padding: 10px 16px; | ||
border: 1px solid transparent; | ||
height: 49px; | ||
line-height: 30px; | ||
} | ||
|
||
.form-control:focus { | ||
border-color: #66afe9; | ||
outline: 0; | ||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6); | ||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6); | ||
} | ||
|
||
/* TODO Remove these from ALA overrides */ | ||
#main .panel-heading h1, #main .panel-heading h2, #main .panel-heading h3 { | ||
margin-bottom: 0; | ||
} | ||
|
58 changes: 58 additions & 0 deletions
58
src/main/resources/static/vendor/jquery-autocomplete-1.1/jquery-autocomplete.css
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,58 @@ | ||
.ac_results { | ||
padding: 0px; | ||
overflow: hidden; | ||
z-index: 99999; | ||
border:1px solid #d1d1d1; | ||
background:#fff; | ||
-moz-border-radius:0 0 3px 3px; /* FF1+ */ | ||
-webkit-border-radius:0 0 3px 3px; /* Saf3+, Chrome */ | ||
-o-border-radius:0 0 3px 3px; | ||
-icab-border-radius:0 0 3px 3px; | ||
-khtml-border-radius:0 0 3px 3px; | ||
border-radius:0 0 3px 3px; /* Opera 7.7, IE 9 */ | ||
} | ||
|
||
.ac_results ul { | ||
width: 100%; | ||
list-style-position: outside; | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.ac_results li { | ||
margin: 0px; | ||
padding: 7px; | ||
cursor: default; | ||
display: block; | ||
/* | ||
if width will be 100% horizontal scrollbar will apear | ||
when scroll mode will be used | ||
*/ | ||
/*width: 100%;font: menu;*/ | ||
|
||
font-size: 14px; | ||
/* | ||
it is very important, if line-height not setted or setted | ||
in relative units scroll will be broken in firefox | ||
*/ | ||
line-height: 16px; | ||
overflow: hidden; | ||
text-align:left; | ||
color:#333a3f; | ||
} | ||
|
||
.ac_loading { | ||
background: white url('../images/indicator.gif') right center no-repeat; | ||
} | ||
|
||
li.ac_odd { | ||
background-color:transparent; | ||
} | ||
|
||
li.ac_over { | ||
background-color: #df4a21; | ||
color: #fff; | ||
} | ||
.ac_results li strong { color:#3a5c83;} | ||
.ac_results li.ac_over strong { color:#fff;} |
Oops, something went wrong.