mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
* i18n fixes - fix issue with default (fallback) language set to browser language - fix issue with fallback language loading when browser language set to non-English locale * code and UI fixes - move document list i18n strings into own scope - replace MDL menu with @angular/material menu (fixes issue with menu items translation, not supported by MDL) - minor improvements * fix unit tests * improve i18n docs and code - provide basic documentation for Translation service - remove custom Login component localisation in favour of documentation sample - simplified i18n setup for demo shell (single path for dev/prod env) * remove unnecessary comments
20 lines
604 B
CSS
20 lines
604 B
CSS
.container {
|
|
display: -webkit-box;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-flex-direction: row;
|
|
flex-direction: row;
|
|
background-color: #fafafa;
|
|
border-bottom: 1px solid transparent;
|
|
border-top: 1px solid #e5e5e5;
|
|
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.2);
|
|
box-shadow: 0 2px 4px rgba(0,0,0,.2);
|
|
height: 53px;
|
|
position: relative;
|
|
-webkit-transition: height .35s cubic-bezier(0.4,0.0,1,1),border-color .4s;
|
|
transition: height .35s cubic-bezier(0.4,0.0,1,1),border-color .4s;
|
|
z-index: 5;
|
|
}
|