initial source commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
div.page div.column1 {
|
||||
width: 44%;
|
||||
padding-right: 1%;
|
||||
float: left;
|
||||
}
|
||||
div.page div.column2 {
|
||||
border-left: 1px dashed #aaa;
|
||||
padding-left: 1%;
|
||||
width: 53%;
|
||||
float: left;
|
||||
}
|
||||
div.page table {
|
||||
table-layout: fixed;
|
||||
}
|
||||
div.page table tr {
|
||||
border-bottom: 1px dashed #8db2d8;
|
||||
border-top: 1px dashed #8db2d8;
|
||||
}
|
||||
div.page table tr:nth-child(odd) {
|
||||
background-color: #e8eef4;
|
||||
}
|
||||
div.page table td.Alert {
|
||||
background-color: #FFADAD;
|
||||
}
|
||||
div.page table td.userId {
|
||||
width: 100px;
|
||||
}
|
||||
div.page table td.timestamp {
|
||||
width: 250px;
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
div.page {
|
||||
div.column1 {
|
||||
width: 44%;
|
||||
padding-right: 1%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
div.column2 {
|
||||
border-left: 1px dashed #aaa;
|
||||
padding-left: 1%;
|
||||
width: 53%;
|
||||
float: left;
|
||||
}
|
||||
table {
|
||||
table-layout: fixed;
|
||||
tr {
|
||||
border-bottom: 1px dashed #8db2d8;
|
||||
border-top: 1px dashed #8db2d8;
|
||||
}
|
||||
tr:nth-child(odd) {
|
||||
background-color: #e8eef4;
|
||||
}
|
||||
td.Alert {
|
||||
background-color: #FFADAD;
|
||||
}
|
||||
td.userId {
|
||||
width: 100px;
|
||||
}
|
||||
td.timestamp {
|
||||
width: 250px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
div.page div.column1{width:44%;padding-right:1%;float:left}div.page div.column2{border-left:1px dashed #aaa;padding-left:1%;width:53%;float:left}div.page table{table-layout:fixed}div.page table tr{border-bottom:1px dashed #8db2d8;border-top:1px dashed #8db2d8}div.page table tr:nth-child(odd){background-color:#e8eef4}div.page table td.Alert{background-color:#ffadad}div.page table td.userId{width:100px}div.page table td.timestamp{width:250px}
|
||||
@@ -0,0 +1,82 @@
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
body {
|
||||
background-color: #84abcb;
|
||||
font-size: 1em;
|
||||
font-family: "Segoe UI", Arial, Verdana, Tahoma, sans-serif;
|
||||
color: #333;
|
||||
cursor: auto;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
div#page {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
header {
|
||||
font-family: "Segoe UI Light", Arial, Verdana, Tahoma, sans-serif;
|
||||
font-size: 2em;
|
||||
padding: 10px 20px;
|
||||
background-color: rgba(255, 255, 255, 0.7);
|
||||
border-bottom: 10px solid rgba(255, 255, 255, 0.8);
|
||||
height: 40px;
|
||||
box-shadow: 0 5px 20px #555;
|
||||
}
|
||||
div#mainFooter {
|
||||
clear: both;
|
||||
padding: 10px 20px;
|
||||
background-color: rgba(255, 255, 255, 0.7);
|
||||
text-align: right;
|
||||
height: 20px;
|
||||
color: #000;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
.list {
|
||||
float: left;
|
||||
margin: 15px 5px 10px 5px;
|
||||
}
|
||||
.list h3 {
|
||||
color: #000;
|
||||
font-family: "Segoe UI Light", Arial, Verdana, Tahoma, sans-serif;
|
||||
font-weight: normal;
|
||||
margin-left: 10px;
|
||||
margin-bottom: 10px;
|
||||
font-size: 1.4em;
|
||||
}
|
||||
.list div.content {
|
||||
border: 2px solid rgba(255, 255, 255, 0);
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
border-radius: 2px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.list div.content ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.list div.content ul li {
|
||||
font-size: 1em;
|
||||
margin: 3px;
|
||||
background-color: #fff;
|
||||
border: 5px solid rgba(132, 171, 203, 0.2);
|
||||
border-radius: 2px;
|
||||
padding: 4px 5px;
|
||||
}
|
||||
.list div.content ul li .small {
|
||||
font-size: 0.75em;
|
||||
font-style: italic;
|
||||
}
|
||||
.list div.content ul li.alert {
|
||||
background-color: #FFADAD;
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
@import "../Declarations";
|
||||
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
background-color: #84abcb;
|
||||
font-size: 1em;
|
||||
font-family: @FontFamilyBody;
|
||||
color: #333;
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div#page {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
header {
|
||||
font-family: @FontFamilyHeading;
|
||||
font-size: 2em;
|
||||
padding: 10px 20px;
|
||||
background-color: rgba(255, 255, 255, 0.7);
|
||||
border-bottom: 10px solid rgba(255, 255, 255, 0.8);
|
||||
height: 40px;
|
||||
box-shadow: 0 5px 20px #555;
|
||||
}
|
||||
|
||||
div#mainFooter {
|
||||
clear: both;
|
||||
padding: 10px 20px;
|
||||
background-color: rgba(255, 255, 255, 0.7);
|
||||
text-align: right;
|
||||
height: 20px;
|
||||
color: #000;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.list {
|
||||
float: left;
|
||||
margin: 15px 5px 10px 5px;
|
||||
h3 {
|
||||
color: #000;
|
||||
font-family: @FontFamilyHeading;
|
||||
font-weight: normal;
|
||||
margin-left: 10px;
|
||||
margin-bottom: 10px;
|
||||
font-size: 1.4em;
|
||||
}
|
||||
div.content {
|
||||
border: 2px solid rgba(255, 255, 255, 0);
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
border-radius: 2px;
|
||||
overflow: hidden;
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
li {
|
||||
font-size: 1em;
|
||||
margin: 3px;
|
||||
background-color: #fff;
|
||||
border: 5px solid rgba(132, 171, 203, 0.2);
|
||||
border-radius: 2px;
|
||||
padding: 4px 5px;
|
||||
.small {
|
||||
font-size: 0.75em;
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
li.alert {
|
||||
background-color: #FFADAD;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
html,body{margin:0;padding:0;height:100%;width:100%;overflow:hidden}body{background-color:#84abcb;font-size:1em;font-family:"Segoe UI",Arial,Verdana,Tahoma,sans-serif;color:#333;cursor:auto}h1,h2,h3,h4{margin:0;padding:0}div#page{margin:0;padding:0}header{font-family:"Segoe UI Light",Arial,Verdana,Tahoma,sans-serif;font-size:2em;padding:10px 20px;background-color:rgba(255,255,255,.7);border-bottom:10px solid rgba(255,255,255,.8);height:40px;box-shadow:0 5px 20px #555}div#mainFooter{clear:both;padding:10px 20px;background-color:rgba(255,255,255,.7);text-align:right;height:20px;color:#000;font-size:.8em}.list{float:left;margin:15px 5px 10px 5px}.list h3{color:#000;font-family:"Segoe UI Light",Arial,Verdana,Tahoma,sans-serif;font-weight:normal;margin-left:10px;margin-bottom:10px;font-size:1.4em}.list div.content{border:2px solid rgba(255,255,255,0);background:rgba(255,255,255,.3);border-radius:2px;overflow:hidden}.list div.content ul{padding:0;margin:0;list-style:none}.list div.content ul li{font-size:1em;margin:3px;background-color:#fff;border:5px solid rgba(132,171,203,.2);border-radius:2px;padding:4px 5px}.list div.content ul li .small{font-size:.75em;font-style:italic}.list div.content ul li.alert{background-color:#ffadad}
|
||||
@@ -0,0 +1,27 @@
|
||||
<?xml version='1.0' ?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
<xsl:output encoding="us-ascii" method="html" indent="yes" />
|
||||
<xsl:template match="/ArrayOfUserHeldDeviceModel">
|
||||
<table class="ms-listviewtable" width="100%" border="0" cellSpacing="0" cellPadding="0">
|
||||
<tbody>
|
||||
<tr class="ms-viewheadertr ms-vhltr">
|
||||
<th class="ms-vh2">Username</th>
|
||||
<th class="ms-vh2">Name</th>
|
||||
</tr>
|
||||
<xsl:apply-templates select="UserHeldDeviceModel">
|
||||
<xsl:sort select="UserId" />
|
||||
</xsl:apply-templates>
|
||||
</tbody>
|
||||
</table>
|
||||
</xsl:template>
|
||||
<xsl:template match="UserHeldDeviceModel">
|
||||
<tr class="ms-itmhover" style="cursor: default">
|
||||
<td class="ms-vb-title ms-vb-firstCell">
|
||||
<xsl:value-of select="UserId"/>
|
||||
</td>
|
||||
<td class="ms-vb2 ms-vb-lastCell" style="cursor: default">
|
||||
<xsl:value-of select="UserDisplayName"/>
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
Reference in New Issue
Block a user