| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- * These are global CSS styles that should apply to all themes
- * Overrides go here... some styles may need !important to override inline styles applied by libraries
- * This CSS file will be loaded last in the chain, so use !important carefully
- */
- #dialog
- {
- height: auto !important;
- }
- #dialog p{
- text-align: left;
- text-align: initial;
- }
- /* Fixes date/time picker off screen issue */
- .bootstrap-datetimepicker-widget > ul{
- padding: 0px;
- }
- span.versionInfo{
- cursor: pointer;
- text-decoration: underline;
- }
- .inline-block{
- display: inline-block;
- }
- div.OGPVersionArea{
- width: 100%;
- position: relative;
- }
- span.copyVersionResult{
- position: absolute;
- left: 90%;
- top: 0;
- }
- .hide{
- display: none !important;
- }
|