PairedTTest.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. .superset-legacy-chart-paired_ttest .scrollbar-container {
  20. overflow: auto;
  21. }
  22. .paired-ttest-table .scrollbar-content {
  23. padding-left: 5px;
  24. padding-right: 5px;
  25. margin-bottom: 0;
  26. }
  27. .paired-ttest-table table {
  28. margin-bottom: 0;
  29. }
  30. .paired-ttest-table h1 {
  31. margin-left: 5px;
  32. }
  33. .reactable-data tr,
  34. .reactable-header-sortable {
  35. -webkit-transition: ease-in-out 0.1s;
  36. transition: ease-in-out 0.1s;
  37. }
  38. .reactable-data tr:hover {
  39. background-color: #e0e0e0;
  40. }
  41. .reactable-data tr .false {
  42. color: #f44336;
  43. }
  44. .reactable-data tr .true {
  45. color: #4caf50;
  46. }
  47. .reactable-data tr .control {
  48. color: #2196f3;
  49. }
  50. .reactable-data tr .invalid {
  51. color: #ff9800;
  52. }
  53. .reactable-data .control td {
  54. background-color: #eeeeee;
  55. }
  56. .reactable-header-sortable:hover,
  57. .reactable-header-sortable:focus,
  58. .reactable-header-sort-asc,
  59. .reactable-header-sort-desc {
  60. background-color: #e0e0e0;
  61. position: relative;
  62. }
  63. .reactable-header-sort-asc:after {
  64. content: '\25bc';
  65. position: absolute;
  66. right: 10px;
  67. }
  68. .reactable-header-sort-desc:after {
  69. content: '\25b2';
  70. position: absolute;
  71. right: 10px;
  72. }