1
0

global.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * These are global CSS styles that should apply to all themes
  3. * Overrides go here... some styles may need !important to override inline styles applied by libraries
  4. * This CSS file will be loaded last in the chain, so use !important carefully
  5. */
  6. #dialog
  7. {
  8. height: auto !important;
  9. }
  10. #dialog p{
  11. text-align: left;
  12. text-align: initial;
  13. }
  14. span.versionInfo{
  15. cursor: pointer;
  16. text-decoration: underline;
  17. }
  18. .inline-block{
  19. display: inline-block;
  20. }
  21. div.OGPVersionArea{
  22. width: 100%;
  23. position: relative;
  24. }
  25. span.copyVersionResult{
  26. position: absolute;
  27. left: 90%;
  28. top: 0;
  29. }
  30. .hide{
  31. display: none !important;
  32. }
  33. .progress {
  34. width: 100%;
  35. background-color: white;
  36. margin-bottom: 5px;
  37. margin-top: 5px;
  38. border: 1px solid black;
  39. }
  40. .progress .progress-bar {
  41. width: 1px;
  42. height: 15px;
  43. /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b4e391+0,61c419+50,b4e391+100;Green+3D */
  44. background: #43DB00; /* Old browsers */
  45. background: -moz-linear-gradient(top, #b4e391 0%, #61c419 50%, #b4e391 100%); /* FF3.6-15 */
  46. background: -webkit-linear-gradient(top, #b4e391 0%,#61c419 50%,#b4e391 100%); /* Chrome10-25,Safari5.1-6 */
  47. background: linear-gradient(to bottom, #b4e391 0%,#61c419 50%,#b4e391 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  48. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4e391', endColorstr='#b4e391',GradientType=0 ); /* IE6-9 */
  49. }
  50. .serverIdToggle{
  51. text-align: right !important;
  52. cursor: pointer;
  53. text-decoration: underline;
  54. }
  55. th.serverId{
  56. min-width: 60px;
  57. }
  58. table.tablesorter thead tr .header.sorter-false{ /* No background image for non-sortable TH */
  59. background-image: none;
  60. cursor: auto;
  61. }
  62. table.hundred{
  63. width: 100%;
  64. }
  65. .disabled{
  66. cursor: not-allowed;
  67. opacity: .6;
  68. }
  69. .uploadLiteFMStatus{
  70. margin-top: 1em;
  71. margin-bottom: 1em;
  72. }
  73. .loader{
  74. border: 6px solid #f3f3f3;
  75. border-radius: 50%;
  76. border-top: 6px solid #3498db;
  77. width: 12px;
  78. height: 12px;
  79. -webkit-animation: spin 2s linear infinite; /* Safari */
  80. animation: spin 2s linear infinite;
  81. }
  82. /* Safari */
  83. @-webkit-keyframes spin {
  84. 0% { -webkit-transform: rotate(0deg); }
  85. 100% { -webkit-transform: rotate(360deg); }
  86. }
  87. @keyframes spin {
  88. 0% { transform: rotate(0deg); }
  89. 100% { transform: rotate(360deg); }
  90. }