inappbrowser.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. .inAppBrowserWrap {
  20. margin: 0;
  21. padding: 0;
  22. outline: 0;
  23. font-size: 100%;
  24. vertical-align: baseline;
  25. background: 0 0;
  26. position: fixed;
  27. top: 0;
  28. left: 0;
  29. width: 100%;
  30. height: 100%;
  31. z-index: 9999999;
  32. box-sizing: border-box;
  33. border: 40px solid #bfbfbf;
  34. border: 40px solid rgba(0, 0, 0, 0.25);
  35. }
  36. .inAppBrowserWrapFullscreen {
  37. border: 0;
  38. }
  39. .inappbrowser-app-bar {
  40. height: 70px;
  41. background-color: #404040;
  42. z-index: 9999999;
  43. }
  44. .inappbrowser-app-bar-inner {
  45. padding-top: 10px;
  46. height: 60px;
  47. width: 155px;
  48. margin: 0 auto;
  49. background-color: #404040;
  50. z-index: 9999999;
  51. }
  52. .app-bar-action {
  53. width: auto;
  54. height: 40px;
  55. margin-left: 20px;
  56. font-family: "Segoe UI Symbol";
  57. float: left;
  58. color: white;
  59. font-size: 12px;
  60. text-transform: lowercase;
  61. text-align: center;
  62. cursor: default;
  63. }
  64. .app-bar-action[disabled] {
  65. color: gray;
  66. /*disable click*/
  67. pointer-events: none;
  68. }
  69. .app-bar-action::before {
  70. font-size: 28px;
  71. display: block;
  72. height: 36px;
  73. }
  74. /* Back */
  75. .action-back {
  76. margin-left: 0px;
  77. }
  78. .action-back::before {
  79. content: "\E0BA";
  80. }
  81. .action-back:not([disabled]):hover::before {
  82. content: "\E0B3";
  83. }
  84. /* Forward */
  85. .action-forward::before {
  86. content: "\E0AC";
  87. }
  88. .action-forward:not([disabled]):hover::before {
  89. content: "\E0AF";
  90. }
  91. /* Close */
  92. .action-close::before {
  93. content: "\E0C7";
  94. /* close icon is larger so we re-size it to fit other icons */
  95. font-size: 20px;
  96. line-height: 40px;
  97. }
  98. .action-close:not([disabled]):hover::before {
  99. content: "\E0CA";
  100. }