Guest User

Untitled

a guest
Apr 26th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <link rel="import" href="../../bower_components/polymer/lib/elements/custom-style.html">
  2.  
  3.  
  4. <dom-module id="custom-variables">
  5. <template>
  6. <style>
  7. html {
  8. --waa-static-width: 355px;
  9. --waa-border-bottom: 2px solid #117bde;
  10. }
  11. </style>
  12. </template>
  13. </dom-module>
  14.  
  15. :host(.static-width) {
  16. label {
  17. width: 120px !important;
  18. padding-right: 20px !important;
  19. text-align: right;
  20. &::after {
  21. position: static;
  22. content: ":";
  23. opacity: 1;
  24. }
  25. }
  26. [part='input-field'] {
  27. width: var(--waa-static-width);
  28. max-width: var(--waa-static-width);
  29. height: 40px;
  30. }
  31.  
  32. .vaadin-text-field-container {
  33. flex-direction: row;
  34. }
  35. }
Add Comment
Please, Sign In to add comment