You are here

search_kint.css in Search Kint 8

.kint .kint-query-result > dt {
  background: #625c43;
  color: #b2b2b2;
}

.kint .kint-query-result dt dfn {
  color: #b2b2b2;
}

.kint .kint-get-path {
  margin-left: 10px;
  position: relative;
}

.kint .kint-get-path a {
  position: absolute;
  background-color: #0092db;
  color: white;
  padding: 2px 8px 1px 8px;
  border-radius: 10px;
  border: none;
  display: none;
  top: -2px;
}

.kint dt:hover .kint-get-path a {
  display: inline-block;
}

.kint .kint-get-path a:hover {
  color: white;
  border: none;
}

.kint dt:hover .kint-get-path a.hidden,
.kint .kint-get-path a.hidden {
  display: none;
}

.kint #kint-path-value {
  width: 400px;
  max-width: 400px;
  position: absolute;
  top: -2px;
}

File

search_kint.css
View source
  1. .kint .kint-query-result > dt {
  2. background: #625c43;
  3. color: #b2b2b2;
  4. }
  5. .kint .kint-query-result dt dfn {
  6. color: #b2b2b2;
  7. }
  8. .kint .kint-get-path {
  9. margin-left: 10px;
  10. position: relative;
  11. }
  12. .kint .kint-get-path a {
  13. position: absolute;
  14. background-color: #0092db;
  15. color: white;
  16. padding: 2px 8px 1px 8px;
  17. border-radius: 10px;
  18. border: none;
  19. display: none;
  20. top: -2px;
  21. }
  22. .kint dt:hover .kint-get-path a {
  23. display: inline-block;
  24. }
  25. .kint .kint-get-path a:hover {
  26. color: white;
  27. border: none;
  28. }
  29. .kint dt:hover .kint-get-path a.hidden,
  30. .kint .kint-get-path a.hidden {
  31. display: none;
  32. }
  33. .kint #kint-path-value {
  34. width: 400px;
  35. max-width: 400px;
  36. position: absolute;
  37. top: -2px;
  38. }