Commit 26e25aeccc7e25e8bb2261d234de689e1f0ab143
1 parent
a0614e29
documenent card updates
Showing
1 changed file
with
19 additions
and
1 deletions
controllets/document-card-controllet/document-card-controllet.html
... | ... | @@ -89,13 +89,30 @@ |
89 | 89 | display : none; |
90 | 90 | } |
91 | 91 | |
92 | + #info_close_button{ | |
93 | + z-index: 1; | |
94 | + color: #fff; | |
95 | + box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); | |
96 | + -webkit-transition: 0.2s ease-out; | |
97 | + -moz-transition: 0.2s ease-out; | |
98 | + -o-transition: 0.2s ease-out; | |
99 | + transition: 0.2s ease-out; | |
100 | + cursor: pointer; | |
101 | + background-color: #2196F3; | |
102 | + float: right; | |
103 | + top: 50px; | |
104 | + right: 38px; | |
105 | + margin: 0px; | |
106 | + position: absolute; | |
107 | + } | |
108 | + | |
92 | 109 | </style> |
93 | 110 | |
94 | 111 | |
95 | 112 | <paper-material id="paper_card_container" elevation="{{elevation}}"> |
96 | 113 | |
97 | 114 | <div id="content"> |
98 | - <iframe id="resource" src="{{resourceUrl}}?userName={{userName}}&showLineNumbers=false"></iframe> | |
115 | + <iframe id="resource" src="{{resourceUrl}}?userName={{userName}}"></iframe> | |
99 | 116 | <!--<iframe id="resource" src="{{resourceUrl}}"></iframe>--> |
100 | 117 | </div> |
101 | 118 | |
... | ... | @@ -104,6 +121,7 @@ |
104 | 121 | <paper-dialog id="fullscreen_container" entry-animation="scale-up-animation" exit-animation="fade-out-animation"> |
105 | 122 | <!--with-backdrop--> |
106 | 123 | <div id="fullscreen_content"></div> |
124 | + <paper-button id="info_close_button" dialog-confirm autofocus>x</paper-button> | |
107 | 125 | </paper-dialog> |
108 | 126 | |
109 | 127 | </paper-material> |
... | ... |