MigrationTasks.scss 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. Copyright (C) 2017 Cloudbase Solutions SRL
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as
  5. published by the Free Software Foundation, either version 3 of the
  6. License, or (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Affero General Public License for more details.
  11. You should have received a copy of the GNU Affero General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. @import '../variables.scss';
  15. .root {
  16. }
  17. .container {
  18. margin: 0 auto;
  19. padding: 0 0 40px;
  20. max-width: $max-content-width;
  21. :global(.row), :global(.headerItems) {
  22. :global(.cell) {
  23. &:nth-child(1) {
  24. width: 31%;
  25. }
  26. &:nth-child(2) {width: 16%;}
  27. &:nth-child(3) {width: 34%;}
  28. &:nth-child(4) {width: 19%;}
  29. }
  30. transition: background $animation-swift-out;
  31. }
  32. .taskDetails {
  33. padding: 20px 32px 4px;
  34. .group {
  35. float: left;
  36. margin-bottom: 16px;
  37. .detailTitle {
  38. font-weight: $weight-semibold;
  39. font-size: 10px;
  40. color: $black;
  41. text-transform: uppercase;
  42. margin-bottom: 5px;
  43. }
  44. .detailValue {
  45. font-weight: $weight-regular;
  46. font-size: 14px;
  47. color: $gray-dark;
  48. }
  49. &:nth-child(2n) {
  50. width: 500px;
  51. }
  52. &:nth-child(2n+1) {
  53. width: 225px;
  54. }
  55. &.progressUpdates {
  56. width: 100%;
  57. &>div {
  58. span:first-child {
  59. width: 225px;
  60. display: inline-block;
  61. }
  62. span:last-child {
  63. width: 500px;
  64. display: inline-block;
  65. }
  66. }
  67. :global(.first) {
  68. color: $black;
  69. }
  70. }
  71. }
  72. &:after {
  73. clear: both;
  74. display: block;
  75. height: 0;
  76. content: " ";
  77. }
  78. }
  79. :global(.status-pill) {
  80. background-color: $blue;
  81. }
  82. }
  83. @keyframes rotate {
  84. from {transform: rotate(0deg);}
  85. to {transform: rotate(360deg);}
  86. }