platform_app.css 578 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright 2014 The Chromium Authors. All rights reserved.
  3. * Use of this source code is governed by a BSD-style license that can be
  4. * found in the LICENSE file.
  5. *
  6. * A style sheet for Chrome apps.
  7. */
  8. @namespace "http://www.w3.org/1999/xhtml";
  9. body {
  10. -webkit-user-select: none;
  11. cursor: default;
  12. font-family: $FONTFAMILY;
  13. font-size: $FONTSIZE;
  14. }
  15. webview, appview {
  16. display: inline-block;
  17. width: 300px;
  18. height: 300px;
  19. }
  20. html, body {
  21. overflow: hidden;
  22. }
  23. img, a {
  24. -webkit-user-drag: none;
  25. }
  26. [contenteditable], input {
  27. -webkit-user-select: auto;
  28. }