dialog.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .dialog {
  2. position: absolute;
  3. padding: 10px;
  4. border-radius: 10px;
  5. border: 1px solid gray;
  6. -webkit-box-shadow: rgb(40,40,40) 0px 0px 50px;
  7. display: -webkit-flex;
  8. -webkit-flex-direction: column;
  9. background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E9E9E9), to(#CFCFCF));
  10. font-size: 11px;
  11. font-family: 'Lucida Grande', sans-serif;
  12. }
  13. .dialog-contents {
  14. width: 100%;
  15. font-size: 11px;
  16. font-family: 'Lucida Grande', sans-serif;
  17. }
  18. .go-to-line-dialog input {
  19. font-size: 11px;
  20. }
  21. .go-to-line-dialog button {
  22. font-size: 11px;
  23. color: rgb(6, 6, 6);
  24. border: 1px solid rgb(165, 165, 165);
  25. background-color: rgb(237, 237, 237);
  26. background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 252, 252)), to(rgb(223, 223, 223)));
  27. -webkit-border-radius: 12px;
  28. -webkit-appearance: none;
  29. padding: 3px 20px;
  30. margin: 0 0 0 10px;
  31. }
  32. .go-to-line-dialog button:active {
  33. background-color: rgb(215, 215, 215);
  34. background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(194, 194, 194)), to(rgb(239, 239, 239)));
  35. }