Overview
Comment: | ChromeOS: Updated PIN dialog (untested) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
317e74ef9bf6de1c933162bfdcf94d5e |
User & Date: | rkeene on 2016-04-26 18:04:03 |
Other Links: | manifest | tags |
References
2017-03-09
| ||
01:19 | Reverted [317e74ef9b], moving PIN dialog changes to a different branch check-in: ecf15c25f8 user: rkeene tags: trunk | |
Context
2016-08-19
| ||
16:32 | Updated CACKey Apple Mac macOS OS X Postinstall and Uninstall scripts to properly disable and enable builtin conflicting OS components when on 10.12 "Sierra" or newer check-in: e2fd50bfda user: kvanals tags: trunk | |
2016-04-26
| ||
18:04 | ChromeOS: Updated PIN dialog (untested) check-in: 317e74ef9b user: rkeene tags: trunk | |
2016-04-14
| ||
19:43 | CACKey Chrome release 8 check-in: 71c8167cfd user: rkeene tags: trunk | |
Changes
Modified build/chrome/pin.html from [80f230e669] to [40c7a5a8c8].
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + - - - - + - - - - + + - - + - - - + + - - - - - - + + + + - - - - + + + | <html> <head> <title>CACKey PIN Entry</title> <style> body { margin: 0px; } .pin-dialog { font-family: Roboto; width: 240px; background: white; margin: 20px; } .pin-body, .pin-heading { padding: 0px 16px; } .pin-heading h1 { font-size: 15px; font-weight: 500; padding-top: 18px; color: rgba(0, 0, 0, 0.87); } .pin-body { font-size: 13px; color: rgba(0, 0, 0, 0.54); line-height: 1.4; padding-top: 20px; } .pin-body input { width: 100%; padding: 5px; border-radius: 3px; border: 1px solid #cacaca; box-sizing: border-box; } .pin-buttons { text-align: right; } .pin-buttons button { margin: 12px 0px; height: 32px; padding: 0px 16px; background: none; border: none; cursor: pointer; font-size: 13px; text-transform: uppercase; color: #4285f4; font-weight: 500; } .pin-buttons button:hover, .pin-buttons button:focus { background-color: rgba(0, 0, 0, 0.08); } .pin-buttons button:active { background-color: rgba(0, 0, 0, 0.14); } .pin-buttons #ok { margin-left: 16px; margin-right: 8px; } .pin-buttons #cancel { margin-right: 16px; } </style> <script type="text/javascript" src="pin.js"></script> </head> <div class="pin-dialog"> <div class="pin-heading"> <h1 id="header">CACKey</h1> </div> |