Skip to content

Commit 48f0f3c

Browse files
committed
v6.1.4235
1 parent be1a639 commit 48f0f3c

File tree

165 files changed

+23206
-8342
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+23206
-8342
lines changed

CS/CalDAVServer.FileSystemStorage.AspNet/CalDAVServer.FileSystemStorage.AspNet.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProductVersion>9.0.30729</ProductVersion>
88
<SchemaVersion>2.0</SchemaVersion>
9-
<ProjectGuid>E235F641-F4CF-49C7-B088-374282C6EF3C</ProjectGuid>
9+
<ProjectGuid>1E9BD158-62F0-43F5-80F8-061AAFAD07BB</ProjectGuid>
1010
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
1111
<OutputType>Library</OutputType>
1212
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -123,10 +123,10 @@
123123
</ItemGroup>
124124
<ItemGroup>
125125
<Reference Include="ITHit.WebDAV.Server">
126-
<HintPath>..\packages\ITHit.WebDAV.Server.6.0.4185\lib\net451\ITHit.WebDAV.Server.dll</HintPath>
126+
<HintPath>..\packages\ITHit.WebDAV.Server.6.1.4235\lib\net451\ITHit.WebDAV.Server.dll</HintPath>
127127
</Reference>
128128
<Reference Include="ITHit.WebDAV.Server.Web">
129-
<HintPath>..\packages\ITHit.WebDAV.Server.Web.6.0.4185\lib\net451\ITHit.WebDAV.Server.Web.dll</HintPath>
129+
<HintPath>..\packages\ITHit.WebDAV.Server.Web.6.1.4235\lib\net451\ITHit.WebDAV.Server.Web.dll</HintPath>
130130
</Reference>
131131
</ItemGroup>
132132
<PropertyGroup>
@@ -144,7 +144,7 @@
144144
<AutoAssignPort>True</AutoAssignPort>
145145
<DevelopmentServerPort>9658</DevelopmentServerPort>
146146
<DevelopmentServerVPath>/</DevelopmentServerVPath>
147-
<IISUrl>http://localhost:4658/</IISUrl>
147+
<IISUrl>http://localhost:33538/</IISUrl>
148148
<NTLMAuthentication>True</NTLMAuthentication>
149149
<UseCustomServer>False</UseCustomServer>
150150
<CustomServerUrl>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="ITHit.WebDAV.Server" version="6.0.4185" targetFramework="net451" />
4-
<package id="ITHit.WebDAV.Server.Web" version="6.0.4185" targetFramework="net451" />
3+
<package id="ITHit.WebDAV.Server" version="6.1.4235" targetFramework="net451" />
4+
<package id="ITHit.WebDAV.Server.Web" version="6.1.4235" targetFramework="net451" />
55
<package id="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" targetFramework="net451" />
66
</packages>
Lines changed: 333 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,333 @@
1+
.navbar-header h1 {
2+
height: auto;
3+
padding: 15px;
4+
margin: 0;
5+
font-weight: normal;
6+
font-size: 18px;
7+
line-height: 20px;
8+
color: #9d9d9d;
9+
}
10+
11+
.ithit-search-container {
12+
position: relative;
13+
height: 50px;
14+
}
15+
16+
.ithit-search-container input.tt-input[disabled],
17+
.ithit-search-container input.tt-input[readonly] {
18+
cursor: default;
19+
}
20+
21+
.ithit-search-container .twitter-typeahead {
22+
position: relative;
23+
width: 100%;
24+
padding: 0 100px 0 0;
25+
margin-bottom: 15px;
26+
}
27+
28+
.ithit-search-container button {
29+
position: absolute;
30+
top: 0;
31+
right: 0;
32+
width: 85px;
33+
height: 34px;
34+
}
35+
36+
@media (max-width: 767px) {
37+
.ithit-search-container .twitter-typeahead {
38+
padding-right: 53px;
39+
}
40+
41+
.ithit-search-container button {
42+
width: 38px;
43+
}
44+
}
45+
46+
.ithit-breadcrumb-container {
47+
height: 36px;
48+
}
49+
50+
.ithit-grid-container {
51+
width: 100%;
52+
margin-top: 20px;
53+
}
54+
55+
.ithit-grid-container .column-action {
56+
text-align: right;
57+
padding-left: 0;
58+
padding-right: 0;
59+
}
60+
61+
.ithit-grid-container .column-action a {
62+
display: inline-block;
63+
padding: 2px 8px;
64+
}
65+
66+
.ithit-grid-container .column-action a:last-child {
67+
margin-right: 0;
68+
}
69+
70+
.ithit-grid-container .column-action button.browse-lnk span:last-child {
71+
margin-right: 10px;
72+
}
73+
74+
table.ithit-grid-container > tbody > tr > td {
75+
vertical-align: middle;
76+
white-space: nowrap;
77+
}
78+
79+
table.ithit-grid-container > thead > tr > th:nth-child(1),
80+
table.ithit-grid-container > tbody > tr > td:nth-child(1),
81+
table.ithit-grid-container > thead > tr > th:nth-child(5),
82+
table.ithit-grid-container > tbody > tr > td:nth-child(5) {
83+
text-align: right;
84+
}
85+
86+
table.ithit-grid-container > tbody > tr > td:nth-child(3) {
87+
width: 100%;
88+
}
89+
90+
.ithit-grid-icon-locked {
91+
color: #337ab7;
92+
left: 2px;
93+
top: -1px;
94+
}
95+
96+
.glyphicon .ithit-grid-icon-locked {
97+
left: -4px;
98+
top: 3px;
99+
text-shadow: -1px -1px 0px #fff;
100+
font-size: 12px;
101+
}
102+
103+
@media (max-width: 1280px) {
104+
.custom-hidden {
105+
display: none !important;
106+
}
107+
}
108+
109+
.tt-suggestion .snippet, .ithit-grid-container .snippet {
110+
height: 30px;
111+
overflow: hidden;
112+
font-size: 12px;
113+
line-height: 18px;
114+
color: #999;
115+
}
116+
117+
.tt-suggestion .breadcrumb, .ithit-grid-container .breadcrumb {
118+
font-size: 12px;
119+
color: #999;
120+
word-break: break-word;
121+
}
122+
123+
.ithit-grid-container ul.breadcrumb, .tt-suggestion ul.breadcrumb {
124+
list-style: none;
125+
background-color: transparent;
126+
padding: 0 0 0 8px;
127+
margin: 0;
128+
}
129+
130+
.tt-suggestion ul.breadcrumb {
131+
padding: 0;
132+
}
133+
134+
.tt-suggestion ul.breadcrumb li:first-child, .ithit-grid-container ul.breadcrumb li:first-child {
135+
display: none;
136+
}
137+
138+
.ithit-grid-container ul.breadcrumb li, .tt-suggestion ul.breadcrumb li {
139+
display: inline-block;
140+
margin-right: 5px;
141+
}
142+
143+
.ithit-grid-container ul.breadcrumb li .glyphicon, .ithit-grid-container ul.breadcrumb li:nth-of-type(2):before,
144+
.tt-suggestion ul.breadcrumb li .glyphicon, .tt-suggestion ul.breadcrumb li:nth-of-type(2):before {
145+
display: none;
146+
}
147+
148+
.ithit-grid-container ul.breadcrumb li:before, .tt-suggestion ul.breadcrumb li:before {
149+
padding: 0;
150+
}
151+
152+
.tt-suggestion .snippet b, .ithit-grid-container .snippet b {
153+
color: #555;
154+
}
155+
156+
.tt-hint {
157+
color: #999;
158+
}
159+
160+
.tt-menu {
161+
width: 100%;
162+
right: 100px;
163+
margin: 1px 0;
164+
padding: 6px 0;
165+
background-color: #fff;
166+
border: 1px solid #ccc;
167+
-webkit-border-radius: 4px;
168+
border-radius: 4px;
169+
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
170+
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
171+
}
172+
173+
.tt-suggestion {
174+
padding: 3px 20px;
175+
line-height: 1.7;
176+
}
177+
178+
.tt-suggestion:hover {
179+
cursor: pointer;
180+
background-color: #eee;
181+
}
182+
183+
.tt-suggestion.tt-cursor {
184+
background-color: #eee;
185+
}
186+
187+
table tr.tr-snippet-url td {
188+
padding: 0px;
189+
border-top: none;
190+
}
191+
192+
table tr.tr-snippet-url td > div {
193+
padding-left: 8px;
194+
}
195+
196+
table tr.tr-snippet-url td > div:last-child {
197+
margin-bottom: 8px;
198+
padding-right: 8px;
199+
}
200+
201+
table tr.hover {
202+
background-color: #f5f5f5;
203+
}
204+
205+
.table-responsive {
206+
border: none;
207+
}
208+
209+
table td.ellipsis, table th.ellipsis {
210+
position: relative;
211+
}
212+
213+
table td.ellipsis:before, table th.ellipsis:before {
214+
content: '&nbsp;';
215+
visibility: hidden;
216+
}
217+
218+
table td.ellipsis span, table td.ellipsis a, table th.ellipsis span, table th.ellipsis a {
219+
position: absolute;
220+
left: 8px;
221+
right: 8px;
222+
white-space: nowrap;
223+
overflow: hidden;
224+
text-overflow: ellipsis;
225+
}
226+
227+
table .glyphicon {
228+
vertical-align: middle;
229+
top: -3px;
230+
}
231+
232+
table .glyphicon > span {
233+
vertical-align: middle;
234+
}
235+
236+
table .glyphicon:before {
237+
font-size: 18px;
238+
}
239+
240+
#ithit-dropzone {
241+
border: 2px dashed;
242+
padding: 20px;
243+
margin: 20px 15px 30px;
244+
border-radius: 8px;
245+
cursor: pointer;
246+
}
247+
248+
#ithit-dropzone .boxtitle {
249+
font-size: 18px;
250+
}
251+
252+
.ithit-grid-uploads > tbody > tr > td {
253+
vertical-align: middle;
254+
white-space: nowrap;
255+
}
256+
/*Size and Uploaded columns*/
257+
.ithit-grid-uploads > tbody > tr > td:nth-child(2),
258+
.ithit-grid-uploads > tbody > tr > td:nth-child(3) {
259+
width: 95px;
260+
}
261+
262+
/*Completed column*/
263+
.ithit-grid-uploads > tbody > tr > td:nth-child(4) {
264+
width: 56px;
265+
}
266+
267+
/*Elapsed, Remaining and Speed columns*/
268+
.ithit-grid-uploads > tbody > tr > td:nth-child(5),
269+
.ithit-grid-uploads > tbody > tr > td:nth-child(6),
270+
.ithit-grid-uploads > tbody > tr > td:nth-child(7) {
271+
width: 110px;
272+
}
273+
274+
/*State column*/
275+
.ithit-grid-uploads > tbody > tr > td:nth-child(8) {
276+
width: 80px;
277+
}
278+
279+
/*Actions column*/
280+
.ithit-grid-uploads > tbody > tr > td:nth-child(9) {
281+
width: 60px;
282+
}
283+
284+
.ithit-grid-uploads td.progress {
285+
padding: 0;
286+
border-top: none;
287+
background-color: transparent;
288+
border-radius: 0;
289+
height: 3px;
290+
box-shadow: none;
291+
}
292+
293+
.ithit-grid-uploads td .lnk-cancel {
294+
margin-left: 10px;
295+
}
296+
297+
.ithit-grid-uploads .progress-bar {
298+
height: 3px;
299+
}
300+
301+
.ithit-grid-uploads td.text-center {
302+
white-space: nowrap;
303+
}
304+
305+
.ithit-grid-uploads .glyphicon {
306+
font-size: 22px;
307+
}
308+
309+
.ithit-grid-uploads td.column-action {
310+
padding-left: 0;
311+
padding-right: 0;
312+
}
313+
314+
.ithit-grid-uploads td.column-action .btn {
315+
padding-left: 8px;
316+
padding-right: 8px;
317+
}
318+
319+
button.btn.btn-transparent {
320+
background-color: transparent;
321+
border: none;
322+
padding: 2px 8px;
323+
min-width: initial;
324+
color: #337ab7;
325+
}
326+
327+
.alert-danger {
328+
margin-top: 15px;
329+
}
330+
331+
.btn {
332+
min-width: 70px;
333+
}

0 commit comments

Comments
 (0)