| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*
- * 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;
- }
- 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;
- }
- .progress {
- width: 100%;
- background-color: white;
- margin-bottom: 5px;
- margin-top: 5px;
- border: 1px solid black;
- }
- .progress .progress-bar {
- width: 1px;
- height: 15px;
-
- /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b4e391+0,61c419+50,b4e391+100;Green+3D */
- background: #43DB00; /* Old browsers */
- background: -moz-linear-gradient(top, #b4e391 0%, #61c419 50%, #b4e391 100%); /* FF3.6-15 */
- background: -webkit-linear-gradient(top, #b4e391 0%,#61c419 50%,#b4e391 100%); /* Chrome10-25,Safari5.1-6 */
- background: linear-gradient(to bottom, #b4e391 0%,#61c419 50%,#b4e391 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4e391', endColorstr='#b4e391',GradientType=0 ); /* IE6-9 */
- }
- .serverIdToggle{
- text-align: right !important;
- cursor: pointer;
- text-decoration: underline;
- }
- th.serverId{
- min-width: 60px;
- }
- table.tablesorter thead tr .header.sorter-false{ /* No background image for non-sortable TH */
- background-image: none;
- cursor: auto;
- }
- table.hundred{
- width: 100%;
- }
|